Package net.sourceforge.marathon.util

Examples of net.sourceforge.marathon.util.TextPrompt


    private JTextField home = new JTextField();

    public PythonPathPanel(JDialog parent) {
        super(parent, true);
        this.parent = parent;
        TextPrompt prompt = new TextPrompt("(Bundled Jython)", home);
        prompt.changeAlpha((float) 0.5);
    }
View Full Code Here


public class RubyPathPanel extends ListPanel implements ISubPropertiesPanel {
    private JTextField home = new JTextField();

    public RubyPathPanel(JDialog parent) {
        super(parent, true);
        TextPrompt prompt = new TextPrompt("(Bundled JRuby)", home);
        prompt.changeAlpha((float) 0.5);
    }
View Full Code Here

TOP

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

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.