es.uned.compiler.lexical
Interface TokenIF

All Known Implementing Classes:
Token, TokenBase

public interface TokenIF


Method Summary
 int getColumn()
          Returns the column.
 int getId()
          Returns the id.
 java.lang.String getLexema()
          Returns the lexema.
 int getLine()
          Returns the line.
 void setColumn(int column)
          Sets The column.
 void setId(int id)
          Sets The id.
 void setLexema(java.lang.String lexema)
          Sets The lexema.
 void setLine(int line)
          Sets The line.
 

Method Detail

getColumn

int getColumn()
Returns the column.

Returns:
Returns the column.

getId

int getId()
Returns the id.

Returns:
Returns the id.

getLexema

java.lang.String getLexema()
Returns the lexema.

Returns:
Returns the lexema.

getLine

int getLine()
Returns the line.

Returns:
Returns the line.

setColumn

void setColumn(int column)
Sets The column.

Parameters:
column - The column to set.

setId

void setId(int id)
Sets The id.

Parameters:
id - The id to set.

setLexema

void setLexema(java.lang.String lexema)
Sets The lexema.

Parameters:
lexema - The lexema to set.

setLine

void setLine(int line)
Sets The line.

Parameters:
line - The line to set.