Save This Page
Home » Xerces-J-src.2.9.1 » org.apache.xerces.dom3 » as » [javadoc | source]
org.apache.xerces.dom3.as
public interface: ASAttributeDeclaration [javadoc | source]

All Implemented Interfaces:
    ASObject

Deprecated! An - attribute declaration in the context of a ASObject.The constant 'REQUIRED' is missing from this interface.

See also the Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification.

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