| com.sun.xml.bind.AccessorFactory
All known Subclasses: com.sun.xml.bind.AccessorFactoryImpl,
AccessorFactory | public interface AccessorFactory (Code) | | A means to allow the user to provide customized Accessor
to be used by JAXB.
|
createFieldAccessor | Accessor createFieldAccessor(Class bean, Field f, boolean readOnly) throws JAXBException(Code) | | Access a field of the class.
Parameters: bean - the class to be processed. Parameters: f - 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 | Accessor createPropertyAccessor(Class bean, Method getter, Method setter) throws JAXBException(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. |
|
|