org.geolatte.common.cql.node.TDurDaySymbol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geolatte-common Show documentation
Show all versions of geolatte-common Show documentation
This GeoLatte-common library contains the transformer framework and other common classes used by other
GeoLatte modules.
/* This file was generated by SableCC (http://www.sablecc.org/). */
package org.geolatte.common.cql.node;
import org.geolatte.common.cql.analysis.*;
@SuppressWarnings("nls")
public final class TDurDaySymbol extends Token
{
public TDurDaySymbol()
{
super.setText("D");
}
public TDurDaySymbol(int line, int pos)
{
super.setText("D");
setLine(line);
setPos(pos);
}
@Override
public Object clone()
{
return new TDurDaySymbol(getLine(), getPos());
}
public void apply(Switch sw)
{
((Analysis) sw).caseTDurDaySymbol(this);
}
@Override
public void setText(@SuppressWarnings("unused") String text)
{
throw new RuntimeException("Cannot change TDurDaySymbol text.");
}
}