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 SummaryFields Modifier and Type Field Description AttributeListattsThe attributesContentModelcontentThe content modelObjectdataA field to store user data.BitSetexclusionsThe set of elements that must not occur inside the elementBitSetinclusionsThe set of elements that can occur inside the elementintindexThe element indexStringnameThe name of the elementbooleanoEndtrueif the end tag can be omittedbooleanoStarttrueif the start tag can be omittedinttypeThe element typeFields declared in interface javax.swing.text.html.parser.DTDConstantsANY, 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 SummaryModifier and Type Method Description AttributeListgetAttribute(String name)Get an attribute by name.AttributeListgetAttributeByValue(String value)Get an attribute by value.AttributeListgetAttributes()Get the attributes.ContentModelgetContent()Get content modelintgetIndex()Get index.StringgetName()Get the name of the element.intgetType()Get type.booleanisEmpty()Check if emptystatic intname2type(String nm)Convertsnmto type.booleanomitEnd()Return true if the end tag can be omitted.booleanomitStart()Return true if the start tag can be omitted.StringtoString()Convert to a string.
- 
Field Details- 
indexpublic int indexThe element index
- 
nameThe name of the element
- 
oStartpublic boolean oStarttrueif the start tag can be omitted
- 
oEndpublic boolean oEndtrueif the end tag can be omitted
- 
inclusionsThe set of elements that can occur inside the element
- 
exclusionsThe set of elements that must not occur inside the element
- 
typepublic int typeThe element type
- 
contentThe content model
- 
attsThe attributes
- 
dataA field to store user data. Mostly used to store style sheets.
 
- 
- 
Method Details- 
getNameGet the name of the element.- Returns:
- the name of the element
 
- 
omitStartpublic boolean omitStart()Return true if the start tag can be omitted.- Returns:
- trueif the start tag can be omitted
 
- 
omitEndpublic boolean omitEnd()Return true if the end tag can be omitted.- Returns:
- trueif the end tag can be omitted
 
- 
getTypepublic int getType()Get type.- Returns:
- the type of the element
 
- 
getContentGet content model- Returns:
- the content model
 
- 
getAttributesGet the attributes.- Returns:
- the AttributeListspecifying the element
 
- 
getIndexpublic int getIndex()Get index.- Returns:
- the element index
 
- 
isEmptypublic boolean isEmpty()Check if empty- Returns:
- true if the current element is empty
 
- 
toStringConvert to a string.
- 
getAttributeGet an attribute by name.- Parameters:
- name- the attribute name
- Returns:
- the AttributeListfor the givenname
 
- 
getAttributeByValueGet an attribute by value.- Parameters:
- value- the string representation of value
- Returns:
- the AttributeListfor the givenvalue
 
- 
name2typeConvertsnmto type. Returns appropriate DTDConstants if thenmis equal to CDATA, RCDATA, EMPTY or ANY, 0 otherwise.- Parameters:
- nm- a name
- Returns:
- appropriate DTDConstants if the nmis equal to CDATA, RCDATA, EMPTY or ANY, 0 otherwise.
 
 
-