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.

Code.java 381B

1234567891011121314151617181920212223242526
  1. public class Code {
  2. public static void main(String []argv) {
  3. new Code().run();
  4. }
  5. public static void runner() {
  6. new Code().run();
  7. }
  8. public void run() {
  9. aaa();
  10. bbb();
  11. ccc();
  12. ddd();
  13. }
  14. @SuppressWarnings("rawtypes")
  15. public void aaa() {}
  16. public void bbb() {}
  17. @SuppressWarnings("rawtypes")
  18. public void ccc() {}
  19. public void ddd() {}
  20. }