org.apache.ws.jaxme.xs.xml
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>
| Nested Class Summary | |
|---|---|
| static class | XsTWildcard.ProcessContents |
| Field Summary | |
|---|---|
| static XsTWildcard.ProcessContents | LAX |
| static XsTWildcard.ProcessContents | SKIP |
| static XsTWildcard.ProcessContents | STRICT |
| Method Summary | |
|---|---|
| XsNamespaceList | getNamespace() |
| XsTWildcard.ProcessContents | getProcessContents() |
| void | setNamespace(String pList) |
| void | setProcessContents(XsTWildcard.ProcessContents pProcessContents) |