Package org.eclipse.wb.internal.core.utils.dialogfields

Examples of org.eclipse.wb.internal.core.utils.dialogfields.DialogField


     * Saves bound {@link DialogField} back to the deployment descriptor.
     */
    public void saveProperties() throws Exception {
      for (Entry<String, DialogField> entry : m_keyToField.entrySet()) {
        String key = entry.getKey();
        DialogField dialogField = entry.getValue();
        // prepare value
        String value;
        if (dialogField instanceof StringDialogField) {
          StringDialogField stringDialogField = (StringDialogField) dialogField;
          value = stringDialogField.getText();
View Full Code Here

TOP

Related Classes of org.eclipse.wb.internal.core.utils.dialogfields.DialogField

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.