You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
257 B
21 lines
257 B
11 years ago
|
package net.mightypork.rcalc.tokens;
|
||
|
|
||
|
|
||
|
import net.mightypork.rcalc.IToken;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Right parenthesis token
|
||
|
*
|
||
|
* @author Ondrej Hruska
|
||
|
*/
|
||
|
public class TokenParenthesisRight implements IToken {
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
|
||
|
return ")";
|
||
|
}
|
||
|
|
||
|
}
|