| org.geotools.gml.GMLHandlerGeometry
All known Subclasses: org.geotools.gml.GMLFilterGeometry,
GMLHandlerGeometry | public interface GMLHandlerGeometry extends ContentHandler(Code) | | LEVEL2 saxGML4j GML handler: Gets basic alerts from GMLFilterDocument.
This handler is required for any parent of a GMLFilterDocument filter. It
receives basic element notifications and coordinates.
author: Rob Hranac, Vision for New York version: $Id: GMLHandlerGeometry.java 20705 2006-07-24 19:13:31Z jgarnett $ |
Method Summary | |
abstract void | geometryEnd(String localName) Receives a geometry end element from the parent. | abstract void | geometryStart(String localName, Attributes atts) Receives a geometry start element from the parent. | abstract void | geometrySub(String localName) Receives a geometry sub element from the parent. | abstract void | gmlCoordinates(double x, double y) Receives a finished coordinate from the parent (2-valued). | abstract void | gmlCoordinates(double x, double y, double z) Receives a finished coordinate from the parent (3-valued). |
geometryEnd | abstract void geometryEnd(String localName) throws SAXException(Code) | | Receives a geometry end element from the parent.
|
geometrySub | abstract void geometrySub(String localName) throws SAXException(Code) | | Receives a geometry sub element from the parent.
|
gmlCoordinates | abstract void gmlCoordinates(double x, double y) throws SAXException(Code) | | Receives a finished coordinate from the parent (2-valued).
|
gmlCoordinates | abstract void gmlCoordinates(double x, double y, double z) throws SAXException(Code) | | Receives a finished coordinate from the parent (3-valued).
|
|
|