source: DCWoRMS/trunk/src/schedframe/Property.java @ 477

Revision 477, 364 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe;
2
3import java.util.ArrayList;
4
5import schemas.StringValueWithUnitType;
6
7public 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.