Package net.cakenet.jsaton.ui.tools.script.ruby

Examples of net.cakenet.jsaton.ui.tools.script.ruby.RubyScriptEditorPane


    }

    public static ScriptEditorPane paneFor(Script script, ScriptEditor editor) {
        switch (script.language) {
            case RUBY:
                return new RubyScriptEditorPane(editor);
            default:
                throw new RuntimeException("No editor defined for lang: " + script.language);
        }
    }
View Full Code Here

TOP

Related Classes of net.cakenet.jsaton.ui.tools.script.ruby.RubyScriptEditorPane

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.