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.@absenceHTMLText;
15 override protected function createSingleTagEditor():SingleTagEditor {
16 return new FreeTextEditor();