Uses of Interface
net.sf.jaxme.xs.xml.XsTElement

Packages that use XsTElement
net.sf.jaxme.xs   
net.sf.jaxme.xs.impl   
net.sf.jaxme.xs.jaxb.impl   
net.sf.jaxme.xs.xml   
net.sf.jaxme.xs.xml.impl   
 

Uses of XsTElement in net.sf.jaxme.xs
 

Methods in net.sf.jaxme.xs with parameters of type XsTElement
 XSElement XSObjectFactory.newXSElement(XSObject pParent, XsTElement pElement)
          Returns a new instance of XSElement.
 

Uses of XsTElement in net.sf.jaxme.xs.impl
 

Methods in net.sf.jaxme.xs.impl that return XsTElement
protected  XsTElement XSElementImpl.getXsTElement()
           
 

Methods in net.sf.jaxme.xs.impl with parameters of type XsTElement
 XSElement XSObjectFactoryImpl.newXSElement(XSObject pParent, XsTElement pElement)
           
 

Constructors in net.sf.jaxme.xs.impl with parameters of type XsTElement
XSElementImpl(XSObject pParent, XsTElement pBaseElement)
           
 

Uses of XsTElement in net.sf.jaxme.xs.jaxb.impl
 

Methods in net.sf.jaxme.xs.jaxb.impl with parameters of type XsTElement
 XSElement JAXBObjectFactoryImpl.newXSElement(XSObject pParent, XsTElement pElement)
           
 

Constructors in net.sf.jaxme.xs.jaxb.impl with parameters of type XsTElement
JAXBElementImpl(XSObject pParent, XsTElement pBaseElement)
          Creates a new instance of JAXBElementImpl.
 

Uses of XsTElement in net.sf.jaxme.xs.xml
 

Subinterfaces of XsTElement in net.sf.jaxme.xs.xml
 interface XsTLocalElement
          Interface of the xs:localElement type, as specified by:
 interface XsTTopLevelElement
          Interface of the xs:topLevelElement type, with the following specification:
 

Uses of XsTElement in net.sf.jaxme.xs.xml.impl
 

Classes in net.sf.jaxme.xs.xml.impl that implement XsTElement
 class XsTElementImpl
          Implementation of the xs:element type, as specified by the following: <xs:complexType name="element" abstract="true"> <xs:annotation> <xs:documentation> The element element can be used either at the top level to define an element-type binding globally, or within a content model to either reference a globally-defined element or type or declare an element-type binding locally.
 class XsTLocalAllElementImpl
           
 class XsTLocalElementImpl
          Implementation of the xs:localElement type, as specified by: <xs:complexType name="localElement"> <xs:complexContent> <xs:restriction base="xs:element"> <xs:sequence> <xs:element ref="xs:annotation" minOccurs="0"/> <xs:choice minOccurs="0"> <xs:element name="simpleType" type="xs:localSimpleType"/> <xs:element name="complexType" type="xs:localComplexType"/> </xs:choice> <xs:group ref="xs:identityConstraint" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="substitutionGroup" use="prohibited"/> <xs:attribute name="final" use="prohibited"/> <xs:attribute name="abstract" use="prohibited"/> </xs:restriction> </xs:complexContent> </xs:complexType> Implementation note: This class doesn't specify any additional methods.
 class XsTTopLevelElementImpl
          Interface of the xs:topLevelElement type, with the following specification: