org.apache.ws.jaxme.xs.xml
Interface XsTSimpleType
- All Superinterfaces: 
- XsObject, XsTAnnotated, XsTOpenAttrs
- All Known Subinterfaces: 
- XsETopLevelSimpleType, XsTLocalSimpleType
- All Known Implementing Classes: 
- XsETopLevelSimpleTypeImpl, XsTLocalSimpleTypeImpl, XsTSimpleTypeImpl
- public interface XsTSimpleType- extends XsTAnnotated
Interface of the following specification for
 xs:simpleType:
 
  <xs:complexType name="simpleType" abstract="true">
    <xs:complexContent>
      <xs:extension base="xs:annotated">
        <xs:group ref="xs:simpleDerivation"/>
        <xs:attribute name="final" type="xs:simpleDerivationSet"/>
        <xs:attribute name="name" type="xs:NCName">
          <xs:annotation>
            <xs:documentation>
              Can be restricted to required or forbidden
            </xs:documentation>
          </xs:annotation>
        </xs:attribute>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  <xs:group name="simpleDerivation">
    <xs:choice>
      <xs:element ref="xs:restriction"/>
      <xs:element ref="xs:list"/>
      <xs:element ref="xs:union"/>
    </xs:choice>
  </xs:group>
 
- Author:
- Jochen Wiedmann
 
 
 
 
createRestriction
public XsERestriction createRestriction()
                                 throws org.xml.sax.SAXException
- 
 
- 
- Throws:
- org.xml.sax.SAXException
 
getRestriction
public XsERestriction getRestriction()
- 
 
- 
 
createList
public XsEList createList()
                   throws org.xml.sax.SAXException
- 
 
- 
- Throws:
- org.xml.sax.SAXException
 
getList
public XsEList getList()
- 
 
- 
 
createUnion
public XsEUnion createUnion()
                     throws org.xml.sax.SAXException
- 
 
- 
- Throws:
- org.xml.sax.SAXException
 
getUnion
public XsEUnion getUnion()
- 
 
- 
 
setFinal
public void setFinal(XsSimpleDerivationSet pSet)
              throws org.xml.sax.SAXException
- 
 
- 
- Throws:
- org.xml.sax.SAXException
 
getFinal
public XsSimpleDerivationSet getFinal()
- 
 
- 
 
setName
public void setName(XsNCName pName)
             throws org.xml.sax.SAXException
- 
 
- 
- Throws:
- org.xml.sax.SAXException
 
getName
public XsNCName getName()
- 
 
-