Examples of StringDialogField


Examples of org.erlide.ui.dialogfields.StringDialogField

            }
        });
        fOtpHome.setLabelText("Location"); //$NON-NLS-1$
        fOtpHome.setButtonLabel("&Browse..."); //$NON-NLS-1$

        fName = new StringDialogField();
        fName.setLabelText(RuntimePreferenceMessages.addDialog_ertsName);

        final String[] buttons = new String[] { RuntimePreferenceMessages.addDialog_add,
                RuntimePreferenceMessages.addDialog_remove, "Move up", "Move down" };
        fCodePath = new ListDialogField<String>(this, buttons, new StringLabelProvider());
        fCodePath.setLabelText("Code path");
        // enable this when it will work (#163)
        fCodePath.setEnabled(false);

        fArgs = new StringDialogField();
        fArgs.setLabelText("E&xtra args"); //$NON-NLS-1$

        final Composite parent = (Composite) super.createDialogArea(ancestor);
        ((GridLayout) parent.getLayout()).numColumns = 3;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.