Package org.w3._2001.schema
Interface Facet
-
- All Known Subinterfaces:
NoFixedFacet
,NumFacet
,PatternType
,TotalDigitsType
,WhiteSpaceType
- All Known Implementing Classes:
FacetImpl
,NoFixedFacetImpl
,NumFacetImpl
,PatternTypeImpl
,TotalDigitsTypeImpl
,WhiteSpaceTypeImpl
public interface Facet extends Annotated
- See Also:
SchemaPackage.getFacet()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
getValue()
Returns the value of the 'Value' attribute.boolean
isFixed()
Returns the value of the 'Fixed' attribute.boolean
isSetFixed()
Returns whether the value of the 'Fixed
' attribute is set.void
setFixed(boolean value)
Sets the value of the 'Fixed
' attribute.void
setValue(Object value)
Sets the value of the 'Value
' attribute.void
unsetFixed()
Unsets the value of the 'Fixed
' attribute.-
Methods inherited from interface Annotated
getAnnotation, getId, setAnnotation, setId
-
Methods inherited from interface EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface OpenAttrs
getAnyAttribute
-
-
-
-
Method Detail
-
isFixed
boolean isFixed()
Returns the value of the 'Fixed' attribute. The default value is"false"
.- Returns:
- the value of the 'Fixed' attribute.
- See Also:
isSetFixed()
,unsetFixed()
,setFixed(boolean)
,SchemaPackage.getFacet_Fixed()
-
setFixed
void setFixed(boolean value)
Sets the value of the 'Fixed
' attribute.- Parameters:
value
- the new value of the 'Fixed' attribute.- See Also:
isSetFixed()
,unsetFixed()
,isFixed()
-
unsetFixed
void unsetFixed()
Unsets the value of the 'Fixed
' attribute.- See Also:
isSetFixed()
,isFixed()
,setFixed(boolean)
-
isSetFixed
boolean isSetFixed()
Returns whether the value of the 'Fixed
' attribute is set.- Returns:
- whether the value of the 'Fixed' attribute is set.
- See Also:
unsetFixed()
,isFixed()
,setFixed(boolean)
-
getValue
Object getValue()
Returns the value of the 'Value' attribute.- Returns:
- the value of the 'Value' attribute.
- See Also:
setValue(Object)
,SchemaPackage.getFacet_Value()
-
setValue
void setValue(Object value)
Sets the value of the 'Value
' attribute.- Parameters:
value
- the new value of the 'Value' attribute.- See Also:
getValue()
-
-