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 TNgeq extends Token {
08: public TNgeq() {
09: super .setText("~=");
10: }
11:
12: public TNgeq(int line, int pos) {
13: super .setText("~=");
14: setLine(line);
15: setPos(pos);
16: }
17:
18: public Object clone() {
19: return new TNgeq(getLine(), getPos());
20: }
21:
22: public void apply(Switch sw) {
23: ((Analysis) sw).caseTNgeq(this );
24: }
25:
26: public void setText(String text) {
27: throw new RuntimeException("Cannot change TNgeq text.");
28: }
29: }
|