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.

MyFoo.java 273B

12345678910111213141516171819202122232425
  1. package foo;
  2. public class MyFoo {
  3. public int i;
  4. public MyFoo() {
  5. super();
  6. }
  7. public MyFoo(String s) {
  8. super();
  9. }
  10. public void callMain() {
  11. new MyFoo().main();
  12. }
  13. public void main() {
  14. System.out.println("blah");
  15. }
  16. public void anotMethod() {
  17. }
  18. }