org.apache.ws.jaxme.xs.xml
Interface XsTWildcard
- All Superinterfaces: 
- XsObject, XsTAnnotated, XsTOpenAttrs
- All Known Subinterfaces: 
- XsEAny
- All Known Implementing Classes: 
- XsEAnyImpl, XsTWildcardImpl
- public interface XsTWildcard- extends XsTAnnotated
Interface of xs:wildcard, with the
 following specification:
 
  <xs:complexType name="wildcard">
    <xs:complexContent>
      <xs:extension base="xs:annotated">
        <xs:attribute name="namespace" type="xs:namespaceList" use="optional" default="##any"/>
        <xs:attribute name="processContents" use="optional" default="strict"
          <xs:simpleType>
            <xs:restriction base="xs:NMTOKEN">
              <xs:enumeration value="skip"/>
              <xs:enumeration value="lax"/>
              <xs:enumeration value="strict"/>
            </xs:restriction>
          </xs:simpleType>
        </xs:attribute>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
 
- Author:
- Jochen Wiedmann
 
 
 
 
 
 
SKIP
public static final XsTWildcard.ProcessContents SKIP
LAX
public static final XsTWildcard.ProcessContents LAX
STRICT
public static final XsTWildcard.ProcessContents STRICT
setNamespace
public void setNamespace(java.lang.String pList)
- 
 
- 
 
getNamespace
public XsNamespaceList getNamespace()
- 
 
- 
 
setProcessContents
public void setProcessContents(XsTWildcard.ProcessContents pProcessContents)
- 
 
- 
 
getProcessContents
public XsTWildcard.ProcessContents getProcessContents()
- 
 
-