de.prob.unicode.node.TConv Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unicode Show documentation
Show all versions of unicode Show documentation
Part of the ProB Parser library
/* This file was generated by SableCC (http://www.sablecc.org/). */
package de.prob.unicode.node;
import de.prob.unicode.analysis.Analysis;
public final class TConv extends Token
{
public TConv(String text)
{
super(text);
}
public TConv(String text, int line, int pos)
{
super(text, line, pos);
}
@Override
public TConv clone()
{
TConv cloned = new TConv(this.getText(), this.getLine(), this.getPos());
cloned.initSourcePositionsFrom(this);
return cloned;
}
@Override
public void apply(Switch sw)
{
((Analysis) sw).caseTConv(this);
}
}