-
- All Superinterfaces:
XSComponent
public interface XSAttributeUse extends XSComponent
Attribute use.- Author:
- Kohsuke Kawaguchi (kohsuke.kawaguchi@sun.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XSAttributeDeclgetDecl()XmlStringgetDefaultValue()Gets the default value of this attribute use, if one is specified.XmlStringgetFixedValue()Gets the fixed value of this attribute use, if one is specified.booleanisRequired()-
Methods inherited from interface com.sun.xml.xsom.XSComponent
apply, getAnnotation, getAnnotation, getForeignAttribute, getForeignAttributes, getLocator, getOwnerSchema, getRoot, getSourceDocument, select, selectSingle, visit
-
-
-
-
Method Detail
-
isRequired
boolean isRequired()
-
getDecl
XSAttributeDecl getDecl()
-
getDefaultValue
XmlString getDefaultValue()
Gets the default value of this attribute use, if one is specified. Note that if a default value is specified in the attribute declaration, this method returns that value.
-
getFixedValue
XmlString getFixedValue()
Gets the fixed value of this attribute use, if one is specified. Note that if a fixed value is specified in the attribute declaration, this method returns that value.
-
-