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

org.geolatte.common.cql.node.ADefaultStringLiteral Maven / Gradle / Ivy

Go to download

This GeoLatte-common library contains the transformer framework and other common classes used by other GeoLatte modules.

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

package org.geolatte.common.cql.node;

import org.geolatte.common.cql.analysis.*;

@SuppressWarnings("nls")
public final class ADefaultStringLiteral extends PStringLiteral
{
    private TCharacterStringLiteral _characterStringLiteral_;

    public ADefaultStringLiteral()
    {
        // Constructor
    }

    public ADefaultStringLiteral(
        @SuppressWarnings("hiding") TCharacterStringLiteral _characterStringLiteral_)
    {
        // Constructor
        setCharacterStringLiteral(_characterStringLiteral_);

    }

    @Override
    public Object clone()
    {
        return new ADefaultStringLiteral(
            cloneNode(this._characterStringLiteral_));
    }

    public void apply(Switch sw)
    {
        ((Analysis) sw).caseADefaultStringLiteral(this);
    }

    public TCharacterStringLiteral getCharacterStringLiteral()
    {
        return this._characterStringLiteral_;
    }

    public void setCharacterStringLiteral(TCharacterStringLiteral node)
    {
        if(this._characterStringLiteral_ != null)
        {
            this._characterStringLiteral_.parent(null);
        }

        if(node != null)
        {
            if(node.parent() != null)
            {
                node.parent().removeChild(node);
            }

            node.parent(this);
        }

        this._characterStringLiteral_ = node;
    }

    @Override
    public String toString()
    {
        return ""
            + toString(this._characterStringLiteral_);
    }

    @Override
    void removeChild(@SuppressWarnings("unused") Node child)
    {
        // Remove child
        if(this._characterStringLiteral_ == child)
        {
            this._characterStringLiteral_ = null;
            return;
        }

        throw new RuntimeException("Not a child.");
    }

    @Override
    void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
    {
        // Replace child
        if(this._characterStringLiteral_ == oldChild)
        {
            setCharacterStringLiteral((TCharacterStringLiteral) newChild);
            return;
        }

        throw new RuntimeException("Not a child.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy