blob: d297b48996f21f2f0a07f6e034b0edb946a77107 [file] [log] [blame]
/* This file was generated by SableCC (http://www.sablecc.org/). */
package com.google.clearsilver.jsilver.syntax.node;
import com.google.clearsilver.jsilver.syntax.analysis.*;
@SuppressWarnings("nls")
public final class TLt extends Token
{
public TLt()
{
super.setText("<");
}
public TLt(int line, int pos)
{
super.setText("<");
setLine(line);
setPos(pos);
}
@Override
public Object clone()
{
return new TLt(getLine(), getPos());
}
public void apply(Switch sw)
{
((Analysis) sw).caseTLt(this);
}
@Override
public void setText(@SuppressWarnings("unused") String text)
{
throw new RuntimeException("Cannot change TLt text.");
}
}