src.gov.nasa.worldwind.ogc.kml.KMLPolygon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worldwindx Show documentation
Show all versions of worldwindx Show documentation
World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.
/*
* 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.*;
import gov.nasa.worldwind.util.xml.XMLEventParserContext;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.events.XMLEvent;
import java.util.*;
/**
* Represents the KML Polygon element and provides access to its contents.
*
* @author tag
* @version $Id: KMLPolygon.java 1171 2013-02-11 21:45:02Z dcollins $
*/
public class KMLPolygon extends KMLAbstractGeometry
{
protected List innerBoundaries;
/**
* Construct an instance.
*
* @param namespaceURI the qualifying namespace URI. May be null to indicate no namespace qualification.
*/
public KMLPolygon(String namespaceURI)
{
super(namespaceURI);
}
@Override
protected void doAddEventContent(Object o, XMLEventParserContext ctx, XMLEvent event, Object... args)
throws XMLStreamException
{
if (o instanceof KMLBoundary && event.asStartElement().getName().getLocalPart().equals("innerBoundaryIs"))
this.addInnerBoundary(((KMLBoundary) o).getLinearRing());
else
super.doAddEventContent(o, ctx, event, args);
}
protected void addInnerBoundary(KMLLinearRing o)
{
if (this.innerBoundaries == null)
this.innerBoundaries = new ArrayList();
this.innerBoundaries.add(o);
}
public boolean isExtrude()
{
return this.getExtrude() == Boolean.TRUE;
}
public Boolean getExtrude()
{
return (Boolean) this.getField("extrude");
}
public Boolean getTessellate()
{
return (Boolean) this.getField("tessellate");
}
public String getAltitudeMode()
{
return (String) this.getField("altitudeMode");
}
public Iterable extends KMLLinearRing> getInnerBoundaries()
{
return this.innerBoundaries;
}
public KMLLinearRing getOuterBoundary()
{
Object o = this.getField("outerBoundaryIs");
return o != null ? ((KMLBoundary) o).getLinearRing() : null;
}
@Override
public void applyChange(KMLAbstractObject sourceValues)
{
if (!(sourceValues instanceof KMLPolygon))
{
String message = Logging.getMessage("nullValue.SourceIsNull");
Logging.logger().warning(message);
throw new IllegalArgumentException(message);
}
KMLPolygon sourcePolygon = (KMLPolygon) sourceValues;
if (sourcePolygon.getInnerBoundaries() != null)
this.innerBoundaries = sourcePolygon.innerBoundaries;
super.applyChange(sourceValues);
}
}