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

src.gov.nasa.worldwind.ogc.kml.KMLVec2 Maven / Gradle / Ivy

/*
 * Copyright (C) 2012 United States Government as represented by the Administrator of the
 * National Aeronautics and Space Administration.
 * All Rights Reserved.
 */

package gov.nasa.worldwind.ogc.kml;

import gov.nasa.worldwind.util.WWUtil;
import gov.nasa.worldwind.util.xml.*;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.events.*;

/**
 * Represents the KML Vec2 element and provides access to its contents.
 *
 * @author tag
 * @version $Id: KMLVec2.java 1171 2013-02-11 21:45:02Z dcollins $
 */
public class KMLVec2 extends KMLAbstractObject
{
    protected Double x;
    protected Double y;

    /**
     * Construct an instance.
     *
     * @param namespaceURI the qualifying namespace URI. May be null to indicate no namespace qualification.
     */
    public KMLVec2(String namespaceURI)
    {
        super(namespaceURI);
    }

    @Override
    protected void doAddEventAttribute(Attribute attr, XMLEventParserContext ctx, XMLEvent event, Object... args)
        throws XMLStreamException
    {
        if ("x".equals(attr.getName().getLocalPart()))
            this.setX(WWUtil.makeDouble(attr.getValue()));
        else if ("y".equals(attr.getName().getLocalPart()))
            this.setY(WWUtil.makeDouble(attr.getValue()));
        else
            super.doAddEventAttribute(attr, ctx, event, args);
    }

    protected void setX(Double o)
    {
        this.x = o;
    }

    public Double getX()
    {
        return this.x;
    }

    protected void setY(Double o)
    {
        this.y = o;
    }

    public Double getY()
    {
        return this.y;
    }

    public String getXunits()
    {
        return (String) this.getField("xunits");
    }

    public String getYunits()
    {
        return (String) this.getField("yunits");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy