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.AbstractComplexBinding;
021: import org.geotools.xml.ElementInstance;
022: import org.geotools.xml.Node;
023: import org.picocontainer.MutablePicoContainer;
024:
025: /**
026: * Binding object for the type http://www.w3.org/2001/XMLSchema:realGroup.
027: *
028: * <p>
029: * <pre>
030: * <code>
031: * <xs:complexType name="realGroup">
032: * <xs:complexContent>
033: * <xs:restriction base="xs:group">
034: * <xs:sequence>
035: * <xs:element ref="xs:annotation" minOccurs="0"/>
036: * <xs:choice minOccurs="0" maxOccurs="1">
037: * <xs:element ref="xs:all"/>
038: * <xs:element ref="xs:choice"/>
039: * <xs:element ref="xs:sequence"/>
040: * </xs:choice>
041: * </xs:sequence>
042: * <xs:anyAttribute namespace="##other" processContents="lax"/>
043: * </xs:restriction>
044: * </xs:complexContent>
045: * </xs:complexType>
046: *
047: * </code>
048: * </pre>
049: * </p>
050: *
051: * @generated
052: */
053: public class XSRealGroupBinding extends AbstractComplexBinding {
054: /**
055: * @generated modifiable
056: */
057: public QName getTarget() {
058: return XS.REALGROUP;
059: }
060:
061: /**
062: * <!-- begin-user-doc -->
063: * <!-- end-user-doc -->
064: *
065: * @generated modifiable
066: */
067: public int getExecutionMode() {
068: return AFTER;
069: }
070:
071: /**
072: * <!-- begin-user-doc -->
073: * <!-- end-user-doc -->
074: *
075: * @generated modifiable
076: */
077: public Class getType() {
078: return null;
079: }
080:
081: /**
082: * <!-- begin-user-doc -->
083: * <!-- end-user-doc -->
084: *
085: * @generated modifiable
086: */
087: public void initialize(ElementInstance instance, Node node,
088: MutablePicoContainer context) {
089: }
090:
091: /**
092: * <!-- begin-user-doc -->
093: * <!-- end-user-doc -->
094: *
095: * @generated modifiable
096: */
097: public Object parse(ElementInstance instance, Node node,
098: Object value) throws Exception {
099: //TODO: implement
100: return null;
101: }
102:
103: }
|