diff --git a/src/eva2/server/go/MOCCOStandalone.java b/src/eva2/server/go/MOCCOStandalone.java index ed9f058e..0bb587d6 100644 --- a/src/eva2/server/go/MOCCOStandalone.java +++ b/src/eva2/server/go/MOCCOStandalone.java @@ -372,31 +372,6 @@ public class MOCCOStandalone implements InterfaceGOStandalone, InterfacePopulati } } - public void findViewFor(GeneralGOEProperty editor) { - if (editor.m_Editor instanceof sun.beans.editors.BoolEditor) { - editor.m_View = new PropertyBoolSelector(editor.m_Editor); - } else { - if (editor.m_Editor instanceof sun.beans.editors.DoubleEditor) { - editor.m_View = new PropertyText(editor.m_Editor); - } else { - if (editor.m_Editor.isPaintable() && editor.m_Editor.supportsCustomEditor()) { - editor.m_View = new PropertyPanel(editor.m_Editor); - } else { - if (editor.m_Editor.getTags() != null ) { - editor.m_View = new PropertyValueSelector(editor.m_Editor); - } else { - if (editor.m_Editor.getAsText() != null) { - editor.m_View = new PropertyText(editor.m_Editor); - } else { - System.out.println("Warning: Property \"" + editor.m_Name - + "\" has non-displayabale editor. Skipping."); - } - } - } - } - } - } - /*********************************************************************************************** * InterfaceGOStandalone */