001: /*
002: * GeoTools - OpenSource mapping toolkit
003: * http://geotools.org
004: * (C) 2002-2006, GeoTools Project Managment Committee (PMC)
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation;
009: * version 2.1 of the License.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: */
016: package org.geotools.xs.bindings;
017:
018: import javax.xml.namespace.QName;
019:
020: import org.geotools.xml.InstanceComponent;
021: import org.geotools.xml.SimpleBinding;
022:
023: /**
024: * Binding object for the type http://www.w3.org/2001/XMLSchema:duration.
025: *
026: * <p>
027: * <pre>
028: * <code>
029: * <xs:simpleType name="duration" id="duration">
030: * <xs:annotation>
031: * <xs:appinfo>
032: * <hfp:hasFacet name="pattern"/>
033: * <hfp:hasFacet name="enumeration"/>
034: * <hfp:hasFacet name="whiteSpace"/>
035: * <hfp:hasFacet name="maxInclusive"/>
036: * <hfp:hasFacet name="maxExclusive"/>
037: * <hfp:hasFacet name="minInclusive"/>
038: * <hfp:hasFacet name="minExclusive"/>
039: * <hfp:hasProperty name="ordered" value="partial"/>
040: * <hfp:hasProperty name="bounded" value="false"/>
041: * <hfp:hasProperty name="cardinality" value="countably infinite"/>
042: * <hfp:hasProperty name="numeric" value="false"/>
043: * </xs:appinfo>
044: * <xs:documentation source="http://www.w3.org/TR/xmlschema-2/#duration"/>
045: * </xs:annotation>
046: * <xs:restriction base="xs:anySimpleType">
047: * <xs:whiteSpace value="collapse" fixed="true" id="duration.whiteSpace"/>
048: * </xs:restriction>
049: * </xs:simpleType>
050: *
051: * </code>
052: * </pre>
053: * </p>
054: *
055: * @generated
056: */
057: public class XSDurationBinding implements SimpleBinding {
058: /**
059: * @generated
060: */
061: public QName getTarget() {
062: return XS.DURATION;
063: }
064:
065: /**
066: * <!-- begin-user-doc -->
067: * <!-- end-user-doc -->
068: *
069: * @generated modifiable
070: */
071: public int getExecutionMode() {
072: return AFTER;
073: }
074:
075: /**
076: * <!-- begin-user-doc -->
077: * <!-- end-user-doc -->
078: *
079: * @generated modifiable
080: */
081: public Class getType() {
082: return null;
083: }
084:
085: /**
086: * <!-- begin-user-doc -->
087: * <!-- end-user-doc -->
088: *
089: * @generated modifiable
090: */
091: public Object parse(InstanceComponent instance, Object value)
092: throws Exception {
093: //TODO: implement me
094: return null;
095: }
096:
097: /**
098: * <!-- begin-user-doc -->
099: * <!-- end-user-doc -->
100: *
101: * @generated modifiable
102: */
103: public String encode(Object object, String value) {
104: //TODO: implement
105: return null;
106: }
107: }
|