Rebuilds method, property and call-site state for this meta class.
()
| 3661 | * Rebuilds method, property and call-site state for this meta class. |
| 3662 | */ |
| 3663 | protected synchronized void reinitialize() { |
| 3664 | fillMethodIndex(); |
| 3665 | try { |
| 3666 | addProperties(); |
| 3667 | } catch (Throwable t) { |
| 3668 | if (!AndroidSupport.isRunningAndroid()) { |
| 3669 | UncheckedThrow.rethrow(t); |
| 3670 | } |
| 3671 | // Introspection failure... |
| 3672 | // May happen in Android |
| 3673 | } |
| 3674 | setInitialized(true); |
| 3675 | } |
| 3676 | |
| 3677 | private void addProperties() { |
| 3678 | BeanInfo info; |
no test coverage detected