| java.lang.Object org.geoserver.wfs.xml.v1_0_0.WFSBindingUtils
WFSBindingUtils | public class WFSBindingUtils (Code) | | Utility class to be used by bindings.
author: Justin Deoliveira, The Open Planning Project, jdeolive@openplans.org |
Method Summary | |
public static BigInteger | asBigInteger(Number number) | public static void | outputFormat(EObject object, Node node, String defalt) Sets the outputFormat feature of the object passed in. | public static void | service(EObject object, Node node) Sets the service feature of the object passed in. | static void | set(EObject object, String featureName, Object value) | public static void | version(EObject object, Node node) Sets the version feature of the object passed in. |
outputFormat | public static void outputFormat(EObject object, Node node, String defalt)(Code) | | Sets the outputFormat feature of the object passed in.
The outputFormat value is retreived as an attribute from the node, if
null , the default default is used.
Parameters: object - An object which contains a feature named "version" Parameters: node - The parse node. |
service | public static void service(EObject object, Node node)(Code) | | Sets the service feature of the object passed in.
The service value is retreived as an attribute from the node, if
null , the default "WFS" is used.
Parameters: object - An object which contains a feature named "service" Parameters: node - The parse node. |
version | public static void version(EObject object, Node node)(Code) | | Sets the version feature of the object passed in.
The version value is retreived as an attribute from the node, if
null , the default "1.0.0" is used.
Parameters: object - An object which contains a feature named "version" Parameters: node - The parse node. |
|
|