koala.dynamicjava.tree
Interface IdentifierToken

All Known Implementing Classes:
Identifier, TreeToken

public interface IdentifierToken

This interface represents an identifier token, ie a token from the tree point of view


Method Summary
 int beginColumn()
          Returns the column number where the beginning of the token was found in the source file
 int beginLine()
          Returns the line number where the beginning of the token was found in the source file
 int endColumn()
          Returns the column number where the end of the token was found in the source file
 int endLine()
          Returns the line number where the end of the token was found in the source file
 java.lang.String image()
          Returns the representation of the identifier
 

Method Detail

image

public java.lang.String image()
Returns the representation of the identifier

beginLine

public int beginLine()
Returns the line number where the beginning of the token was found in the source file

endLine

public int endLine()
Returns the line number where the end of the token was found in the source file

beginColumn

public int beginColumn()
Returns the column number where the beginning of the token was found in the source file

endColumn

public int endColumn()
Returns the column number where the end of the token was found in the source file


Copyright ? 2001 Stephane Hillion. All Rights Reserved.