Java Doc for RawAccessor.java in » 6.0-JDK-Modules » jaxb-impl » com » sun » xml » bind » api » Java Source Code / Java DocumentationJava Source Code and Java Documentation
This interface allows JAX-RPC to access an element property of a JAXB bean.
Subject to change without notice.
author: Kohsuke Kawaguchi since: 2.0 EA1
Method Summary
abstractpublic V
get(B bean) Gets the value of the property of the given bean object.
Parameters: bean - must not be null. throws: AccessorException - if failed to set a value.
abstractpublic void
set(B bean, V value) Sets the value of the property of the given bean object.
Parameters: bean - must not be null. Parameters: value - the value to be set.
Gets the value of the property of the given bean object.
Parameters: bean - must not be null. throws: AccessorException - if failed to set a value. For example, the getter methodmay throw an exception. since: 2.0 EA1
Sets the value of the property of the given bean object.
Parameters: bean - must not be null. Parameters: value - the value to be set. Setting value to null means resettingto the VM default value (even for primitive properties.) throws: AccessorException - if failed to set a value. For example, the setter methodmay throw an exception. since: 2.0 EA1