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

org.geolatte.common.cql.node.APolygonGeometryLiteral 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 APolygonGeometryLiteral extends PGeometryLiteral
{
    private TWktPolygonLiteral _wktPolygonLiteral_;

    public APolygonGeometryLiteral()
    {
        // Constructor
    }

    public APolygonGeometryLiteral(
        @SuppressWarnings("hiding") TWktPolygonLiteral _wktPolygonLiteral_)
    {
        // Constructor
        setWktPolygonLiteral(_wktPolygonLiteral_);

    }

    @Override
    public Object clone()
    {
        return new APolygonGeometryLiteral(
            cloneNode(this._wktPolygonLiteral_));
    }

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

    public TWktPolygonLiteral getWktPolygonLiteral()
    {
        return this._wktPolygonLiteral_;
    }

    public void setWktPolygonLiteral(TWktPolygonLiteral node)
    {
        if(this._wktPolygonLiteral_ != null)
        {
            this._wktPolygonLiteral_.parent(null);
        }

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

            node.parent(this);
        }

        this._wktPolygonLiteral_ = node;
    }

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

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

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy