org.apache.ws.jaxme.xs.xml
Interface XsTFacet
- All Superinterfaces: 
- XsObject, XsTAnnotated, XsTFacetBase, XsTFixedFacet, XsTOpenAttrs
- 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)
 | 
 
 
 
 
 
 
setValue
public void setValue(java.lang.String pValue)
- 
 
- 
 
getValue
public java.lang.String getValue()
- 
 
-