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.

Runner.java 279B

1234567891011121314
  1. package ppp;
  2. public class Runner {
  3. public static void main(String[] argv) {
  4. new Runner().run();
  5. }
  6. public void run() {
  7. Bean c = new Bean();
  8. System.out.println("Calling regular method");
  9. c.m();
  10. System.out.println("Calling itd method");
  11. c.foo();
  12. }
  13. }