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

prerna.sablecc2.node.TProjectid 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.sablecc2.node;

import prerna.sablecc2.analysis.*;

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy