org.geolatte.common.cql.node.ABooleanLiteral 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 ABooleanLiteral extends PLiteral
{
private PBooleanLiteral _booleanLiteral_;
public ABooleanLiteral()
{
// Constructor
}
public ABooleanLiteral(
@SuppressWarnings("hiding") PBooleanLiteral _booleanLiteral_)
{
// Constructor
setBooleanLiteral(_booleanLiteral_);
}
@Override
public Object clone()
{
return new ABooleanLiteral(
cloneNode(this._booleanLiteral_));
}
public void apply(Switch sw)
{
((Analysis) sw).caseABooleanLiteral(this);
}
public PBooleanLiteral getBooleanLiteral()
{
return this._booleanLiteral_;
}
public void setBooleanLiteral(PBooleanLiteral node)
{
if(this._booleanLiteral_ != null)
{
this._booleanLiteral_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._booleanLiteral_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._booleanLiteral_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._booleanLiteral_ == child)
{
this._booleanLiteral_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._booleanLiteral_ == oldChild)
{
setBooleanLiteral((PBooleanLiteral) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}