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.

TransformRead.java 374B

123456789101112131415
  1. package test3;
  2. class TransformRead1 {
  3. public int value = 1;
  4. public int value2 = 10;
  5. }
  6. public class TransformRead extends TransformRead1 {
  7. public int value = 100;
  8. public int foo() {
  9. return value + value2 + super.value;
  10. }
  11. public static int getValue(Object obj) { return 1000; }
  12. public static int getValue2(Object obj) { return 10000; }
  13. }