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

prerna.sablecc.node.TColadd 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 TColadd extends Token
{
    public TColadd()
    {
        super.setText("col.add");
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy