I would say, try it out  :)

You can set breakpoints/System.out.println-s inside static-initializer 
blocks:

class A {
  static final Integer TEST_A_INT;
  static {
    TEST_A_INT = new Integer(B.TEST_B_STRING);
  }
}

class B {
  static final String TEST_B_STRING;
  static final Integer TEST_B_INT;
  static {
    TEST_B_INT= A.TEST_A_INT;
    TEST_B_STRING = new String("3004");
  }
}

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to