public XMLEntity getXMLEntity() { XMLEntity xml = new XMLEntity(); xml.putProperty("className", getClassName()); xml.putProperty("isShapeVisible", isShapeVisible()); // color (necessite) if (getFillColor() != null) xml.putProperty("color", StringUtilities.color2String(getFillColor())); xml.putProperty("desc", getDescription()); xml.putProperty("referenceSystem", getReferenceSystem()); xml.putProperty("unit", getUnit()); xml.addChild(markerSymbol.getXMLEntity()); xml.addChild(markerFillProperties.getXMLEntity()); if (getOutline() != null) { XMLEntity outlineXML = getOutline().getXMLEntity(); outlineXML.putProperty("id", "outline symbol"); xml.addChild(outlineXML); } xml.putProperty("hasOutline", hasOutline()); return xml; }