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.

TestClass.java 152B

1234567891011
  1. package ajtest;
  2. public class TestClass {
  3. @AjTarget
  4. private Long test;
  5. public void testMethod() {
  6. Object o = test;
  7. System.out.println(o);
  8. }
  9. }