org.geolatte.common.cql.node.ATrueBooleanLiteral 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 ATrueBooleanLiteral extends PBooleanLiteral
{
public ATrueBooleanLiteral()
{
// Constructor
}
@Override
public Object clone()
{
return new ATrueBooleanLiteral();
}
public void apply(Switch sw)
{
((Analysis) sw).caseATrueBooleanLiteral(this);
}
@Override
public String toString()
{
return "";
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
throw new RuntimeException("Not a child.");
}
}