Java Platform 1.2

javax.swing.text.html
Class HTML

java.lang.Object
  |
  +--javax.swing.text.html.HTML

public class HTML
extends Object

Constants used in the HTMLDocument. These are basically tag and attribute definitions.


Inner Class Summary
static class HTML.Attribute
          Typesafe enumeration representing an html attribute.
static class HTML.Tag
          Typesafe enumeration for an html tag.
static class HTML.UnknownTag
           
 
Field Summary
static String NULL_ATTRIBUTE_VALUE
           
 
Constructor Summary
HTML()
           
 
Method Summary
static HTML.Attribute[] getAllAttributeKeys()
          This is the set of html attributes recognized.
static HTML.Tag[] getAllTags()
          This is the set of actual html tags that are known about the the default html reader.
static HTML.Attribute getAttributeKey(String attName)
          Fetch an attribute constant for a well-known attribute name (i.e.
static int getIntegerAttributeValue(AttributeSet attr, HTML.Attribute key, int def)
          Fetch an integer attribute value.
static HTML.Tag getTag(String tagName)
          Fetch a tag constant for a well-known tag name (i.e.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NULL_ATTRIBUTE_VALUE

public static final String NULL_ATTRIBUTE_VALUE
Constructor Detail

HTML

public HTML()
Method Detail

getAllTags

public static HTML.Tag[] getAllTags()
This is the set of actual html tags that are known about the the default html reader. This set does not include tags that are manufactured by the reader.

getTag

public static HTML.Tag getTag(String tagName)
Fetch a tag constant for a well-known tag name (i.e. one of the tags in the set allTags). If the given name does not represent one of the well-known tags, then null will be returned.

getIntegerAttributeValue

public static int getIntegerAttributeValue(AttributeSet attr,
                                           HTML.Attribute key,
                                           int def)
Fetch an integer attribute value. Attribute values are stored as a string, and this is a convenience method to convert to an actual integer.
Parameters:
attr - the set of attributes to use to try to fetch a value
key - the key to use to fetch the value.
def - the default value to use if the attribute isn't defined or there is an error converting to an integer.

getAllAttributeKeys

public static HTML.Attribute[] getAllAttributeKeys()
This is the set of html attributes recognized.

getAttributeKey

public static HTML.Attribute getAttributeKey(String attName)
Fetch an attribute constant for a well-known attribute name (i.e. one of the attributes in the set allAttributes). If the given name does not represent one of the well-known attributes, then null will be returned.

Java Platform 1.2

Submit a bug or feature Version 1.2 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.