blob: 28d4dc71a5c164944225f701327364d95be10db7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package test;
public class TestIt {
public static void main(String[] args) {
Sub s = new Sub(3, "testValue", "Desc", 17);
s.setValue("another value");
s.setDescription("blue");
System.out.println("done.");
}
}
|