package NET.worlds.scape; import NET.worlds.console.PolledDialog; public class StringPropertyEditor extends PropEditor { private StringPropertyEditor(Property property) { super(property); } @Override public PolledDialog edit(EditTile parent, String title) { return new StringFieldEditorDialog(parent, title, this.property); } public static Property make(Property property) { property.setPropertyType(3); return property.setEditor(new StringPropertyEditor(property)); } }