![JAR search and dependency download from the Maven repository](/logo.png)
org.anarres.graphviz.parser.node.ALiteralAtom Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphviz-parser Show documentation
Show all versions of graphviz-parser Show documentation
GraphViz graph builder and parser.
/* This file was generated by SableCC (http://www.sablecc.org/). */
package org.anarres.graphviz.parser.node;
import org.anarres.graphviz.parser.analysis.*;
@SuppressWarnings("nls")
public final class ALiteralAtom extends PAtom
{
private TLiteral _literal_;
public ALiteralAtom()
{
// Constructor
}
public ALiteralAtom(
@SuppressWarnings("hiding") TLiteral _literal_)
{
// Constructor
setLiteral(_literal_);
}
@Override
public Object clone()
{
return new ALiteralAtom(
cloneNode(this._literal_));
}
public void apply(Switch sw)
{
((Analysis) sw).caseALiteralAtom(this);
}
public TLiteral getLiteral()
{
return this._literal_;
}
public void setLiteral(TLiteral node)
{
if(this._literal_ != null)
{
this._literal_.parent(null);
}
if(node != null)
{
if(node.parent() != null)
{
node.parent().removeChild(node);
}
node.parent(this);
}
this._literal_ = node;
}
@Override
public String toString()
{
return ""
+ toString(this._literal_);
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
if(this._literal_ == child)
{
this._literal_ = null;
return;
}
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
if(this._literal_ == oldChild)
{
setLiteral((TLiteral) newChild);
return;
}
throw new RuntimeException("Not a child.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy