01: /* This file was generated by SableCC (http://www.sablecc.org/). */
02:
03: package org.jmatlab.node;
04:
05: import org.jmatlab.analysis.*;
06:
07: public final class TFloatingPointLiteral extends Token {
08: public TFloatingPointLiteral(String text) {
09: setText(text);
10: }
11:
12: public TFloatingPointLiteral(String text, int line, int pos) {
13: setText(text);
14: setLine(line);
15: setPos(pos);
16: }
17:
18: public Object clone() {
19: return new TFloatingPointLiteral(getText(), getLine(), getPos());
20: }
21:
22: public void apply(Switch sw) {
23: ((Analysis) sw).caseTFloatingPointLiteral(this);
24: }
25: }
|