JIDE 3.5.15

com.jidesoft.editor.tokenmarker
Class TokenMarker.LineInfo

java.lang.Object
  extended by com.jidesoft.editor.tokenmarker.TokenMarker.LineInfo
Enclosing class:
TokenMarker

Deprecated. replaced by a byte array and an Object array in TokenMarker to reduce memory usage.

@Deprecated
public class TokenMarker.LineInfo
extends Object

Inner class for storing information about tokenized lines.

See Also:
TokenMarker.lineInfo

Field Summary
 Object obj
          Deprecated. This is for use by the token marker implementations themselves.
 byte token
          Deprecated. The id of the last token of the line.
 
Constructor Summary
TokenMarker.LineInfo()
          Deprecated. Creates a new LineInfo object with token = Token.NULL and obj = null.
TokenMarker.LineInfo(byte token, Object obj)
          Deprecated. Creates a new LineInfo object with the specified parameters.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

token

public byte token
Deprecated. 
The id of the last token of the line.


obj

public Object obj
Deprecated. 
This is for use by the token marker implementations themselves. It can be used to store anything that is an object and that needs to exist on a per-line basis.

Constructor Detail

TokenMarker.LineInfo

public TokenMarker.LineInfo()
Deprecated. 
Creates a new LineInfo object with token = Token.NULL and obj = null.


TokenMarker.LineInfo

public TokenMarker.LineInfo(byte token,
                            Object obj)
Deprecated. 
Creates a new LineInfo object with the specified parameters.

Parameters:
token - the token
obj - the token related object

JIDE 3.5.15