org.apache.jasper.xmlparser
类 SymbolTable.Entry

java.lang.Object
  继承者 org.apache.jasper.xmlparser.SymbolTable.Entry
包容类:
SymbolTable

protected static final class SymbolTable.Entry
extends Object

This class is a symbol table entry. Each entry acts as a node in a linked list.


字段摘要
 char[] characters
          Symbol characters.
 SymbolTable.Entry next
          The next entry.
 String symbol
          Symbol.
 
构造方法摘要
SymbolTable.Entry(char[] ch, int offset, int length, SymbolTable.Entry next)
          Constructs a new entry from the specified symbol information and next entry reference.
SymbolTable.Entry(String symbol, SymbolTable.Entry next)
          Constructs a new entry from the specified symbol and next entry reference.
 
方法摘要
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

字段详细信息

symbol

public String symbol
Symbol.


characters

public char[] characters
Symbol characters. This information is duplicated here for comparison performance.


next

public SymbolTable.Entry next
The next entry.

构造方法详细信息

SymbolTable.Entry

public SymbolTable.Entry(String symbol,
                         SymbolTable.Entry next)
Constructs a new entry from the specified symbol and next entry reference.


SymbolTable.Entry

public SymbolTable.Entry(char[] ch,
                         int offset,
                         int length,
                         SymbolTable.Entry next)
Constructs a new entry from the specified symbol information and next entry reference.



Copyright © 2013. All Rights Reserved.