![JAR search and dependency download from the Maven repository](/logo.png)
org.anarres.graphviz.parser.node.TComment 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 TComment extends Token
{
public TComment(String text)
{
setText(text);
}
public TComment(String text, int offset, int line, int pos)
{
setText(text);
setOffset(offset);
setLine(line);
setPos(pos);
}
@Override
public Object clone()
{
return new TComment(getText(), getOffset(), getLine(), getPos());
}
public void apply(Switch sw)
{
((Analysis) sw).caseTComment(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy