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.

Test.java 305B

1234567891011121314151617
  1. import java.io.Serializable;
  2. public class Test implements Serializable {
  3. private int i;
  4. public void run () {
  5. System.out.println("Test.run()");
  6. i++;
  7. }
  8. public static void main (String[] args) throws Exception {
  9. Test test = new Test();
  10. test.run();
  11. Util.write(Util.DEFAULT_NAME,test);
  12. }
  13. }