All Downloads are FREE. Search and download functionalities are using the official Maven repository.

prerna.sablecc.node.TRCurlBracket Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
/* This file was generated by SableCC (http://www.sablecc.org/). */

package prerna.sablecc.node;

import prerna.sablecc.analysis.*;

@SuppressWarnings("nls")
public final class TRCurlBracket extends Token
{
    public TRCurlBracket()
    {
        super.setText("}");
    }

    public TRCurlBracket(int line, int pos)
    {
        super.setText("}");
        setLine(line);
        setPos(pos);
    }

    @Override
    public Object clone()
    {
      return new TRCurlBracket(getLine(), getPos());
    }

    @Override
    public void apply(Switch sw)
    {
        ((Analysis) sw).caseTRCurlBracket(this);
    }

    @Override
    public void setText(@SuppressWarnings("unused") String text)
    {
        throw new RuntimeException("Cannot change TRCurlBracket text.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy