blob: cded69dc090411fb4d0d6fd5ff711ce485c9db0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package test;
public class ChildIntObj implements ChildInt {
public void doNewTT(String o) {
// TODO Auto-generated method stub
System.out.println("ChildIntObj.doNewTT");
}
public void doNewXX(String o) {
// TODO Auto-generated method stub
System.out.println("ChildIntObj.doNewXX");
}
public static void main(String[] args) {
new ChildIntObj().doNewTT("");
new ChildIntObj().doNewXX("");
}
}
|