Package xml.factories.element
Class XmlPolygonFactory
java.lang.Object
xml.factories.element.XmlFactoryFromElement<Geometry>
xml.factories.element.XmlGeometryFactory
xml.factories.element.XmlPolygonFactory
public class XmlPolygonFactory extends XmlGeometryFactory
Constructs a
Polygon
from an XML Element
.-
Constructor Summary
Constructors Constructor Description XmlPolygonFactory()
-
Method Summary
Modifier and Type Method Description protected Polygon
createHelper(org.w3c.dom.Element element)
Construct a new instance of type T from an XMLElement
.Methods inherited from class xml.factories.element.XmlGeometryFactory
material
Methods inherited from class xml.factories.element.XmlFactoryFromElement
create
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
XmlPolygonFactory
public XmlPolygonFactory()
-
-
Method Details
-
createHelper
Description copied from class:XmlFactoryFromElement
Construct a new instance of type T from an XMLElement
. This method is intended to be called byXmlFactoryFromElement.create(Element)
.- Specified by:
createHelper
in classXmlFactoryFromElement<Geometry>
- Parameters:
element
- The XMLElement
representing the object to be created.- Returns:
- A new instance of type T created from the XML
Element
.
-