Revision 477,
364 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[477] | 1 | package schedframe; |
---|
| 2 | |
---|
| 3 | import java.util.ArrayList; |
---|
| 4 | |
---|
| 5 | import schemas.StringValueWithUnitType; |
---|
| 6 | |
---|
| 7 | public class Property extends ArrayList<StringValueWithUnitType>{ |
---|
| 8 | |
---|
| 9 | /** |
---|
| 10 | * |
---|
| 11 | */ |
---|
| 12 | private static final long serialVersionUID = 1L; |
---|
| 13 | protected String name; |
---|
| 14 | |
---|
| 15 | public Property(String name) { |
---|
| 16 | super(); |
---|
| 17 | this.name = name; |
---|
| 18 | } |
---|
| 19 | |
---|
| 20 | public String getName() { |
---|
| 21 | return name; |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.