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