source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/CounterItem.java@ 858

Last change on this file since 858 was 858, checked in by tobias, on Apr 9, 2010 at 10:56:07 AM

visual design slightly modified. tree functions extended

File size: 1.7 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class CounterItem extends ItemType implements UserObjectItem{
3 /**
4 * @uml.property name="name"
5 */
6 private String name;
7 /**
8 * @uml.property name="minimum"
9 */
10 private String minimum;
11 /**
12 * @uml.property name="maximum"
13 */
14 private String maximum;
15 /**
16 * @uml.property name="wrapcounter"
17 */
18 private String wrapcounter;
19 /**
20 * @uml.property name="catalog"
21 */
22 private String catalog;
23
24 public CounterItem(){}
25 public CounterItem(String name){
26 setName(name);
27 }
28
29 /**
30 * @return
31 * @uml.property name="name"
32 */
33 public String getName() {
34 return name;
35 }
36 /**
37 * @param name
38 * @uml.property name="name"
39 */
40 public void setName(String name) {
41 this.name = name;
42 }
43 /**
44 * @return
45 * @uml.property name="minimum"
46 */
47 public String getMinimum() {
48 return minimum;
49 }
50 /**
51 * @param minimum
52 * @uml.property name="minimum"
53 */
54 public void setMinimum(String minimum) {
55 this.minimum = minimum;
56 }
57 /**
58 * @return
59 * @uml.property name="maximum"
60 */
61 public String getMaximum() {
62 return maximum;
63 }
64 /**
65 * @param maximum
66 * @uml.property name="maximum"
67 */
68 public void setMaximum(String maximum) {
69 this.maximum = maximum;
70 }
71 /**
72 * @return
73 * @uml.property name="wrapcounter"
74 */
75 public String getWrapcounter() {
76 return wrapcounter;
77 }
78 /**
79 * @param wrapcounter
80 * @uml.property name="wrapcounter"
81 */
82 public void setWrapcounter(String wrapcounter) {
83 this.wrapcounter = wrapcounter;
84 }
85 /**
86 * @return
87 * @uml.property name="catalog"
88 */
89 public String getCatalog() {
90 return catalog;
91 }
92 /**
93 * @param catalog
94 * @uml.property name="catalog"
95 */
96 public void setCatalog(String catalog) {
97 this.catalog = catalog;
98 }
99
100}
101
Note: See TracBrowser for help on using the repository browser.