1 package net.systemeD.potlatch2.mapfeatures.editors {
3 import net.systemeD.halcyon.connection.*;
4 import net.systemeD.potlatch2.mapfeatures.*;
5 import flash.display.*;
7 public class FreeTextEditorFactory extends SingleTagEditorFactory {
8 private var _notPresentText:String;
10 public function FreeTextEditorFactory(inputXML:XML) {
12 _notPresentText = inputXML.hasOwnProperty("@absenceText") ? String(inputXML.@absenceText) : "Unset";
15 override protected function createSingleTagEditor():SingleTagEditor {
16 return new FreeTextEditor();
19 public function get notPresentText():String {
20 return _notPresentText;