gov.nasa.worldwind.ogc.gml.GMLGridEnvelope Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2014 United States Government as represented by the Administrator of the
* National Aeronautics and Space Administration.
* All Rights Reserved.
*/
package gov.nasa.worldwind.ogc.gml;
import gov.nasa.worldwind.util.xml.AbstractXMLEventParser;
/**
* @author tag
* @version $Id: GMLGridEnvelope.java 2061 2014-06-19 19:59:40Z tgaskins $
*/
public class GMLGridEnvelope extends AbstractXMLEventParser
{
public GMLGridEnvelope(String namespaceURI)
{
super(namespaceURI);
}
public String getHigh()
{
return (String) this.getField("high");
}
public String getLow()
{
return (String) this.getField("low");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy