Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.5.0)

E13403-06


oracle.javatools.parser.html
Interface TagTokens

All Known Implementing Classes:
TagLexer

public interface TagTokens

The TagTokens interface defines the constants for the various pieces of an HTML tag. For example, the tokens in the following HTML tag:

<ul type="circle">

will be:

See Also:
LexerToken, TagLexer

Field Summary
static int TK_ATTRIBUTE_NAME
          Constant for the attribute name of an attribute name-value pair.
static int TK_ATTRIBUTE_NAME_EMBEDDED
          Constant for an attribute name containing an embedded tag.
static int TK_ATTRIBUTE_VALUE
          Constant for the attribute value of an attribute name-value pair.
static int TK_ATTRIBUTE_VALUE_EMBEDDED
          Constant for an attribute value containing an embedded tag.
static int TK_ELEMENT_NAME
          Constant for the element name of an HTML tag.
static int TK_SYMBOL
          Constant for the symbols used in a tag, such as '<', '>', '/' and '='.

 

Field Detail

TK_ELEMENT_NAME

static final int TK_ELEMENT_NAME
Constant for the element name of an HTML tag.
See Also:
Constant Field Values

TK_ATTRIBUTE_NAME

static final int TK_ATTRIBUTE_NAME
Constant for the attribute name of an attribute name-value pair.
See Also:
Constant Field Values

TK_ATTRIBUTE_VALUE

static final int TK_ATTRIBUTE_VALUE
Constant for the attribute value of an attribute name-value pair.
See Also:
Constant Field Values

TK_ATTRIBUTE_NAME_EMBEDDED

static final int TK_ATTRIBUTE_NAME_EMBEDDED
Constant for an attribute name containing an embedded tag.
See Also:
Constant Field Values

TK_ATTRIBUTE_VALUE_EMBEDDED

static final int TK_ATTRIBUTE_VALUE_EMBEDDED
Constant for an attribute value containing an embedded tag.
See Also:
Constant Field Values

TK_SYMBOL

static final int TK_SYMBOL
Constant for the symbols used in a tag, such as '<', '>', '/' and '='.
See Also:
Constant Field Values

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.5.0)

E13403-06


Copyright © 1997, 2011, Oracle. All rights reserved.