org.geolatte.common.cql.node.ACompoundIdAttr 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 ACompoundIdAttr extends PAttr
{
private TIdentifier _identifier_;
private PAttr _attr_;
public ACompoundIdAttr()
{
// Constructor
}
public ACompoundIdAttr(
@SuppressWarnings("hiding") TIdentifier _identifier_,
@SuppressWarnings("hiding") PAttr _attr_)
{
// Constructor
setIdentifier(_identifier_);
setAttr(_attr_);
}
@Override
public Object clone()
{
return new ACompoundIdAttr(
cloneNode(this._identifier_),
cloneNode(this._attr_));
}
public void apply(Switch sw)
{
((Analysis) sw).caseACompoundIdAttr(this);
}
public TIdentifier getIdentifier()
{
return this._identifier_;
}
public void setIdentifier(TIdentifier node)
{
if(this._identifier_ != null)
{
this._identifier_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._identifier_ = node;
}
public PAttr getAttr()
{
return this._attr_;
}
public void setAttr(PAttr node)
{
if(this._attr_ != null)
{
this._attr_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._attr_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._identifier_)
+ toString(this._attr_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._identifier_ == child)
{
this._identifier_ = null;
return;
}
if(this._attr_ == child)
{
this._attr_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._identifier_ == oldChild)
{
setIdentifier((TIdentifier) newChild);
return;
}
if(this._attr_ == oldChild)
{
setAttr((PAttr) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}