net.sf.jaxme.xs.xml
Interface XsTWildcard

All Superinterfaces:
XsObject, XsTAnnotated
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

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(XsNamespaceList pList)
           
 void setProcessContents(XsTWildcard.ProcessContents pProcessContents)
           
 
Methods inherited from interface net.sf.jaxme.xs.xml.XsTAnnotated
createAnnotation, getAnnotation, getId, setId
 
Methods inherited from interface net.sf.jaxme.xs.xml.XsObject
getLocator, getObjectFactory, getParentObject, getXsESchema, isTopLevelObject, validate
 

Field Detail

SKIP

public static final XsTWildcard.ProcessContents SKIP

LAX

public static final XsTWildcard.ProcessContents LAX

STRICT

public static final XsTWildcard.ProcessContents STRICT
Method Detail

setNamespace

public void setNamespace(XsNamespaceList pList)

getNamespace

public XsNamespaceList getNamespace()

setProcessContents

public void setProcessContents(XsTWildcard.ProcessContents pProcessContents)

getProcessContents

public XsTWildcard.ProcessContents getProcessContents()