net.sf.jaxme.xs.xml
Interface XsTFacet

All Superinterfaces:
XsObject, XsTAnnotated, XsTFacetBase, XsTFixedFacet
All Known Subinterfaces:
XsEMaxExclusive, XsEMaxInclusive, XsEMinExclusive, XsEMinInclusive, XsEWhiteSpace
All Known Implementing Classes:
XsEMaxExclusiveImpl, XsEMaxInclusiveImpl, XsEMinExclusiveImpl, XsEMinInclusiveImpl, XsEWhiteSpaceImpl

public interface XsTFacet
extends XsTFixedFacet

Interface of a facet, following this specification:

  <xs:complexType name="facet">
    <xs:complexContent>
      <xs:extension base="xs:annotated">
        <xs:attribute name="value" use="required"/>
        <xs:attribute name="fixed" type="xs:boolean" use="optional"
                    default="false"/>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
 

Author:
Jochen Wiedmann

Method Summary
 java.lang.String getValue()
           
 void setValue(java.lang.String pValue)
           
 
Methods inherited from interface net.sf.jaxme.xs.xml.XsTFixedFacet
isFixed, setFixed
 
Methods inherited from interface net.sf.jaxme.xs.xml.XsTFacetBase
getFacetName
 
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
 

Method Detail

setValue

public void setValue(java.lang.String pValue)

getValue

public java.lang.String getValue()