/* This file was generated by SableCC (http://www.sablecc.org/). */ package org.openflexo.antar.expr.parser.node; import org.openflexo.antar.expr.parser.analysis.Analysis; @SuppressWarnings("nls") public final class TScientificNotationNumber extends Token { public TScientificNotationNumber(String text) { setText(text); } public TScientificNotationNumber(String text, int line, int pos) { setText(text); setLine(line); setPos(pos); } @Override public Object clone() { return new TScientificNotationNumber(getText(), getLine(), getPos()); } @Override public void apply(Switch sw) { ((Analysis) sw).caseTScientificNotationNumber(this); } }