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

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

Go to download

World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.

There is a newer version: 2.0.0-986
Show newest version
/*
 * 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.xml.*;

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

/**
 * Represents the KML NetworkLinkControl element and provides access to its contents.
 *
 * @author tag
 * @version $Id: KMLNetworkLinkControl.java 1171 2013-02-11 21:45:02Z dcollins $
 */
public class KMLNetworkLinkControl extends AbstractXMLEventParser
{
    public KMLNetworkLinkControl(String namespaceURI)
    {
        super(namespaceURI);
    }

    @Override
    protected void doAddEventContent(Object o, XMLEventParserContext ctx, XMLEvent event, Object... args)
        throws XMLStreamException
    {
        if (o instanceof KMLAbstractView)
            this.setField("AbstractView", o);
        else
            super.doAddEventContent(o, ctx, event, args);
    }

    public Double getMinRefreshPeriod()
    {
        return (Double) this.getField("minRefreshPeriod");
    }

    public Double getMaxSessionLength()
    {
        return (Double) this.getField("maxSessionLength");
    }

    public String getCookie()
    {
        return (String) this.getField("cookie");
    }

    public String getMessage()
    {
        return (String) this.getField("message");
    }

    public String getLinkName()
    {
        return (String) this.getField("linkName");
    }

    public String getLinkDescription()
    {
        return (String) this.getField("linkDescription");
    }

    public KMLSnippet getLinkSnippet()
    {
        return (KMLSnippet) this.getField("linkSnippet");
    }

    public String getExpires()
    {
        return (String) this.getField("expires");
    }

    public KMLUpdate getUpdate()
    {
        return (KMLUpdate) this.getField("Update");
    }

    public KMLAbstractView getView()
    {
        return (KMLAbstractView) this.getField("AbstractView");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy