| org.geotools.xml.PropertyExtractor
All known Subclasses: org.geotools.xml.impl.BindingPropertyExtractor, org.geotools.gml2.FeaturePropertyExtractor,
PropertyExtractor | public interface PropertyExtractor (Code) | | Factory used by the encoder to obtain child values from objects being encoded.
author: Justin Deoliveira, The Open Planning Project |
Method Summary | |
boolean | canHandle(Object object) Determines if this extractor can handle objects of the given type.
Parameters: object - The object being encoded. | List | properties(Object object, XSDElementDeclaration element) Exracts the properties from the object being encoded.
This method should return a set of tuples made up of
(
org.eclipse.xsd.XSDParticle ,Object).
Parameters: object - The object being encoded. Parameters: element - The element declaration corresponding to the object being encoded. |
canHandle | boolean canHandle(Object object)(Code) | | Determines if this extractor can handle objects of the given type.
Parameters: object - The object being encoded. true if the extractor can handle the object, otherwise false. |
properties | List properties(Object object, XSDElementDeclaration element)(Code) | | Exracts the properties from the object being encoded.
This method should return a set of tuples made up of
(
org.eclipse.xsd.XSDParticle ,Object).
Parameters: object - The object being encoded. Parameters: element - The element declaration corresponding to the object being encoded. A set of element, object tuples. |
|
|