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.Element

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

Fields in javax.swing.text.html.parser declared as Element
private  Element TagElement.element
          The Element the tag was constructed from.
 Element DTD.applet
          The applet element for this DTD.
 Element DTD.base
          The base element for this DTD.
 Element DTD.body
          The body element for this DTD.
 Element DTD.head
          The head element for this DTD.
 Element DTD.html
          The html element for this DTD.
 Element DTD.isindex
          The isindex element of for this DTD.
 Element DTD.meta
          The meta element for this DTD.
 Element DTD.p
          The p element for this DTD.
 Element DTD.param
          The param element for this DTD.
 Element DTD.pcdata
          The pcdata for this DTD.
 Element DTD.title
          The title element for this DTD.
 

Methods in javax.swing.text.html.parser that return Element
 Element TagElement.getElement()
          Get the element from that the tag was constructed.
 Element DTD.getElement(java.lang.String element_name)
          Get the element by the element name.
 Element DTD.getElement(int index)
          Get the element by the value of its index 55 field.
 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  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.
private  Element DTD.newElement(java.lang.String name)
          Find the element with the given name in the element table.
 Element ContentModel.first()
          Get the element, stored in the next.content.
 

Methods in javax.swing.text.html.parser with parameters of type Element
protected  TagElement Parser.makeTag(Element element)
          Constructs the tag from the given element.
protected  TagElement Parser.makeTag(Element element, boolean isSupposed)
          Constructs the tag from the given element.
protected  void Parser.markFirstTime(Element element)
          This is called when the tag, representing the given element, occurs first time in the document.
private  void DTD.assignField(Element e)
           
 

Constructors in javax.swing.text.html.parser with parameters of type Element
TagElement(Element an_element)
          Creates the html tag element from the defintion, stored in the given element.
TagElement(Element an_element, boolean is_fictional)
          Creates the html tag element from the defintion, stored in the given element, setting the flag 'fictional' to the given value.
ContentModel(Element a_content)
          Create a content model, consisting of the single element.