java.lang.Object
javax.swing.text.html.parser.Element
- All Implemented Interfaces:
Serializable
,DTDConstants
public final class Element extends Object implements DTDConstants, Serializable
An element as described in a DTD using the ELEMENT construct.
This is essential the description of a tag. It describes the
type, content model, attributes, attribute types etc. It is used
to correctly parse a document by the Parser.
- See Also:
DTD
,AttributeList
-
Field Summary
Fields Modifier and Type Field Description AttributeList
atts
The attributesContentModel
content
The content modelObject
data
A field to store user data.BitSet
exclusions
The set of elements that must not occur inside the elementBitSet
inclusions
The set of elements that can occur inside the elementint
index
The element indexString
name
The name of the elementboolean
oEnd
true
if the end tag can be omittedboolean
oStart
true
if the start tag can be omittedint
type
The element typeFields declared in interface javax.swing.text.html.parser.DTDConstants
ANY, CDATA, CONREF, CURRENT, DEFAULT, EMPTY, ENDTAG, ENTITIES, ENTITY, FIXED, GENERAL, ID, IDREF, IDREFS, IMPLIED, MD, MODEL, MS, NAME, NAMES, NMTOKEN, NMTOKENS, NOTATION, NUMBER, NUMBERS, NUTOKEN, NUTOKENS, PARAMETER, PI, PUBLIC, RCDATA, REQUIRED, SDATA, STARTTAG, SYSTEM
-
Method Summary
Modifier and Type Method Description AttributeList
getAttribute(String name)
Get an attribute by name.AttributeList
getAttributeByValue(String value)
Get an attribute by value.AttributeList
getAttributes()
Get the attributes.ContentModel
getContent()
Get content modelint
getIndex()
Get index.String
getName()
Get the name of the element.int
getType()
Get type.boolean
isEmpty()
Check if emptystatic int
name2type(String nm)
Convertsnm
to type.boolean
omitEnd()
Return true if the end tag can be omitted.boolean
omitStart()
Return true if the start tag can be omitted.String
toString()
Convert to a string.
-
Field Details
-
index
public int indexThe element index -
name
The name of the element -
oStart
public boolean oStarttrue
if the start tag can be omitted -
oEnd
public boolean oEndtrue
if the end tag can be omitted -
inclusions
The set of elements that can occur inside the element -
exclusions
The set of elements that must not occur inside the element -
type
public int typeThe element type -
content
The content model -
atts
The attributes -
data
A field to store user data. Mostly used to store style sheets.
-
-
Method Details
-
getName
Get the name of the element.- Returns:
- the name of the element
-
omitStart
public boolean omitStart()Return true if the start tag can be omitted.- Returns:
true
if the start tag can be omitted
-
omitEnd
public boolean omitEnd()Return true if the end tag can be omitted.- Returns:
true
if the end tag can be omitted
-
getType
public int getType()Get type.- Returns:
- the type of the element
-
getContent
Get content model- Returns:
- the content model
-
getAttributes
Get the attributes.- Returns:
- the
AttributeList
specifying the element
-
getIndex
public int getIndex()Get index.- Returns:
- the element index
-
isEmpty
public boolean isEmpty()Check if empty- Returns:
- true if the current element is empty
-
toString
Convert to a string. -
getAttribute
Get an attribute by name.- Parameters:
name
- the attribute name- Returns:
- the
AttributeList
for the givenname
-
getAttributeByValue
Get an attribute by value.- Parameters:
value
- the string representation of value- Returns:
- the
AttributeList
for the givenvalue
-
name2type
Convertsnm
to type. Returns appropriate DTDConstants if thenm
is equal to CDATA, RCDATA, EMPTY or ANY, 0 otherwise.- Parameters:
nm
- a name- Returns:
- appropriate DTDConstants if the
nm
is equal to CDATA, RCDATA, EMPTY or ANY, 0 otherwise.
-