Package net.sourceforge.marathon.util

Examples of net.sourceforge.marathon.util.PropertyEditor


    public int getTabSize() {
        return tabSize;
    }

    public void changeEditorSettings(JFrame parent) {
        PropertyEditor ped = new PropertyEditor(parent, RSTAEditorProvider.class,
                RSTAEditorProvider.class.getResource("rsyntaxtextarea.props"), "Editor Settings");
        ped.setVisible(true);
    }
View Full Code Here


        navigator.refresh(new File[] { dir });
    }

    public void onScriptConsoleSettings() {
        URL defaultProperties = ScriptConsole.class.getResource("scriptconsole.props");
        PropertyEditor propertyEditor = new PropertyEditor(this, ScriptConsole.class, defaultProperties, "Script Console Settings");
        propertyEditor.setVisible(true);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.util.PropertyEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.