Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.jface.text.rules
Class Token


java.lang.Object
  extended by 
org.eclipse.jface.text.rules.Token
All Implemented Interfaces:
IToken

public class Token
extends Object
implements IToken

Standard implementation of IToken.


Field Summary
static  IToken EOF
          Standard token: End Of File.
static  IToken OTHER
          Deprecated. will be removed
static  IToken UNDEFINED
          Standard token: Undefined.
static  IToken WHITESPACE
          Standard token: Whitespace.
 
Constructor Summary
Token ( Object data)
          Creates a new token which represents neither undefined, whitespace, nor EOF.
 
Method Summary
  Object getData ()
          Return a data attached to this token.
 boolean isEOF ()
          Return whether this token represents End Of File.
 boolean isOther ()
          Return whether this token is neither undefined, nor whitespace, nor EOF.
 boolean isUndefined ()
          Return whether this token is undefined.
 boolean isWhitespace ()
          Return whether this token represents a whitespace.
 void setData ( Object data)
          Re-initializes the data of this token.
 
Methods inherited from class java.lang. Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

UNDEFINED

public static final 
IToken UNDEFINED
Standard token: Undefined.


EOF

public static final 
IToken EOF
Standard token: End Of File.


WHITESPACE

public static final 
IToken WHITESPACE
Standard token: Whitespace.


OTHER

public static final 
IToken OTHER
Deprecated. will be removed
Standard token: Neither UNDEFINED, WHITESPACE, nor EOF.

Constructor Detail

Token

public Token(
Object data)
Creates a new token which represents neither undefined, whitespace, nor EOF. The newly created token has the given data attached to it.

Parameters:
data - the data attached to the newly created token
Method Detail

setData

public void setData(
Object data)
Re-initializes the data of this token. The token may not represent undefined, whitespace, or EOF.

Parameters:
data - to be attached to the token
Since:
2.0

getData

public 
Object getData()
Description copied from interface: IToken
Return a data attached to this token. The semantics of this data kept undefined by this interface.

Specified by:
getData in interface IToken
Returns:
the data attached to this token.

isOther

public boolean isOther()
Description copied from interface: IToken
Return whether this token is neither undefined, nor whitespace, nor EOF.

Specified by:
isOther in interface IToken
Returns:
trueif this token is not undefined, not a whitespace, and not EOF

isEOF

public boolean isEOF()
Description copied from interface: IToken
Return whether this token represents End Of File.

Specified by:
isEOF in interface IToken
Returns:
trueif this token represents EOF

isWhitespace

public boolean isWhitespace()
Description copied from interface: IToken
Return whether this token represents a whitespace.

Specified by:
isWhitespace in interface IToken
Returns:
trueif this token represents a whitespace

isUndefined

public boolean isUndefined()
Description copied from interface: IToken
Return whether this token is undefined.

Specified by:
isUndefined in interface IToken
Returns:
trueif this token is undefined

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire