| org.apache.xerces.dom3.as.ASAttributeDeclaration
ASAttributeDeclaration | public interface ASAttributeDeclaration extends ASObject(Code) | | |
Field Summary | |
final public static short | VALUE_DEFAULT Indicates that the there is a default value constraint. | final public static short | VALUE_FIXED Indicates that there is a fixed value constraint for this attribute. | final public static short | VALUE_NONE Describes that the attribute does not have any value constraint. |
VALUE_DEFAULT | final public static short VALUE_DEFAULT(Code) | | Indicates that the there is a default value constraint.
|
VALUE_FIXED | final public static short VALUE_FIXED(Code) | | Indicates that there is a fixed value constraint for this attribute.
|
VALUE_NONE | final public static short VALUE_NONE(Code) | | Describes that the attribute does not have any value constraint.
|
getDataValue | public String getDataValue()(Code) | | Default or fixed value.
|
getDefaultType | public short getDefaultType()(Code) | | Constraint type if any for this attribute.
|
getEnumAttr | public String getEnumAttr()(Code) | | Valid attribute values, separated by commas, in a string.
|
getOwnerElements | public ASObjectList getOwnerElements()(Code) | | Owner elements ASObject of attribute, meaning that an
attribute declaration can be shared by multiple elements.
|
setDataType | public void setDataType(ASDataType dataType)(Code) | | Datatype of the attribute.
|
setDataValue | public void setDataValue(String dataValue)(Code) | | Default or fixed value.
|
setDefaultType | public void setDefaultType(short defaultType)(Code) | | Constraint type if any for this attribute.
|
setEnumAttr | public void setEnumAttr(String enumAttr)(Code) | | Valid attribute values, separated by commas, in a string.
|
setOwnerElements | public void setOwnerElements(ASObjectList ownerElements)(Code) | | Owner elements ASObject of attribute, meaning that an
attribute declaration can be shared by multiple elements.
|
|
|