Package org.eclipse.jst.jsf.common.ui.internal.dialogs

Examples of org.eclipse.jst.jsf.common.ui.internal.dialogs.CommonResourceDialog.open()


    CommonResourceDialog dialog = new CommonResourceDialog(shell, _project,
        style);
    dialog.setTitle(ResourceBoundle.getString("FileCellEditor.Title")); //$NON-NLS-1$
    dialog.setSuffixs(_suffixs);
    dialog.setResourceDescription(_resourceDescription);
    if (dialog.open() == Window.OK) {
      Object[] result = dialog.getResult();
      StringBuffer buffer = new StringBuffer();
      for (int i = 0; i < result.length; i++) {
        IPath path = ((IFile) result[i]).getLocation();
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.