| 899 | } |
| 900 | |
| 901 | final class BeanProperty { |
| 902 | BeanProperty(String name) { |
| 903 | this.name = name; |
| 904 | } |
| 905 | |
| 906 | final String name; |
| 907 | NativeJavaMethod getter; |
| 908 | NativeJavaMethod setter; |
| 909 | } |
| 910 | |
| 911 | class FieldAndMethods extends NativeJavaMethod { |
| 912 | @Serial private static final long serialVersionUID = -9222428244284796755L; |
nothing calls this directly
no outgoing calls
no test coverage detected