![JAR search and dependency download from the Maven repository](/logo.png)
org.geolatte.common.cql.node.AFromDurationTimespanLiteral 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 AFromDurationTimespanLiteral extends PTimespanLiteral
{
private TDatetime _from_;
private PDurationLiteral _duration_;
public AFromDurationTimespanLiteral()
{
// Constructor
}
public AFromDurationTimespanLiteral(
@SuppressWarnings("hiding") TDatetime _from_,
@SuppressWarnings("hiding") PDurationLiteral _duration_)
{
// Constructor
setFrom(_from_);
setDuration(_duration_);
}
@Override
public Object clone()
{
return new AFromDurationTimespanLiteral(
cloneNode(this._from_),
cloneNode(this._duration_));
}
public void apply(Switch sw)
{
((Analysis) sw).caseAFromDurationTimespanLiteral(this);
}
public TDatetime getFrom()
{
return this._from_;
}
public void setFrom(TDatetime node)
{
if(this._from_ != null)
{
this._from_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._from_ = node;
}
public PDurationLiteral getDuration()
{
return this._duration_;
}
public void setDuration(PDurationLiteral node)
{
if(this._duration_ != null)
{
this._duration_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._duration_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._from_)
+ toString(this._duration_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._from_ == child)
{
this._from_ = null;
return;
}
if(this._duration_ == child)
{
this._duration_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._from_ == oldChild)
{
setFrom((TDatetime) newChild);
return;
}
if(this._duration_ == oldChild)
{
setDuration((PDurationLiteral) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy