You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChildIntObj.java 423B

1234567891011121314151617181920212223
  1. package test;
  2. public class ChildIntObj implements ChildInt {
  3. public void doNewTT(String o) {
  4. // TODO Auto-generated method stub
  5. System.out.println("ChildIntObj.doNewTT");
  6. }
  7. public void doNewXX(String o) {
  8. // TODO Auto-generated method stub
  9. System.out.println("ChildIntObj.doNewXX");
  10. }
  11. public static void main(String[] args) {
  12. new ChildIntObj().doNewTT("");
  13. new ChildIntObj().doNewXX("");
  14. }
  15. }