Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
javax.swing.text.html.parser.AttributeList

Uses of AttributeList in javax.swing.text.html.parser
 

Fields in javax.swing.text.html.parser declared as AttributeList
 AttributeList Element.atts
          The element attributes.
 AttributeList AttributeList.next
          The value of ( = pointer to ) the next attribute in the linked list, storing all attributes of some Element.
 

Methods in javax.swing.text.html.parser that return AttributeList
 AttributeList Element.getAttribute(java.lang.String attribute)
          Get the element attribute by name.
 AttributeList Element.getAttributeByValue(java.lang.String a_value)
          Get the element attribute by its value.
 AttributeList Element.getAttributes()
          Get all attributes of this document as an attribute list.
protected  AttributeList DTD.defAttributeList(java.lang.String name, int type, int modifier, java.lang.String default_value, java.lang.String allowed_values, AttributeList atts)
          Creates and returns new attribute (not an attribute list).
 AttributeList AttributeList.getNext()
          Get the value of ( = pointer to ) the next attribute in the linked list, storing all attributes of some Element.
 

Methods in javax.swing.text.html.parser with parameters of type AttributeList
 void DTD.defineAttributes(java.lang.String forElement, AttributeList attributes)
          Define the attributes for the element with the given name.
 Element DTD.defineElement(java.lang.String name, int type, boolean headless, boolean tailless, ContentModel content, java.util.BitSet exclusions, java.util.BitSet inclusions, AttributeList attributes)
          Defines the element and adds it to the element table.
protected  AttributeList DTD.defAttributeList(java.lang.String name, int type, int modifier, java.lang.String default_value, java.lang.String allowed_values, AttributeList atts)
          Creates and returns new attribute (not an attribute list).
protected  Element DTD.defElement(java.lang.String name, int type, boolean headless, boolean tailless, ContentModel content, java.lang.String[] exclusions, java.lang.String[] inclusions, AttributeList attributes)
          Defines a new element and adds it to the element table.
 

Constructors in javax.swing.text.html.parser with parameters of type AttributeList
AttributeList(java.lang.String a_name, int a_type, int a_modifier, java.lang.String a_default, java.util.Vector allowed_values, AttributeList a_next)
          Creates the attribute with the given properties.