| java.lang.Object com.sun.xml.bind.AccessorFactoryImpl
createFieldAccessor | public Accessor createFieldAccessor(Class bean, Field field, boolean readOnly)(Code) | | Access a field of the class.
Parameters: bean - the class to be processed. Parameters: field - the field within the class to be accessed. Parameters: readOnly - the isStatic value of the field's modifier. Accessor the accessor for this field throws: JAXBException - reports failures of the method. |
createPropertyAccessor | public Accessor createPropertyAccessor(Class bean, Method getter, Method setter)(Code) | | Access a property of the class.
Parameters: bean - the class to be processed Parameters: getter - the getter method to be accessed. The value can be null. Parameters: setter - the setter method to be accessed. The value can be null. Accessor the accessor for these methods throws: JAXBException - reports failures of the method. |
|
|