blob: 342d06e035cbe6d31c71e3f4147e20ef92ff4629 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package test;
public class Sub extends Base {
private int numValue;
private String description;
public Sub(int id, String value, String description, int numValue) {
super(id, value);
this.description = description;
this.numValue = numValue;
}
public int getNumValue() {
return numValue;
}
public void setNumValue(int numValue) {
this.numValue = numValue;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public void other() {
// blah;
}
}
|