Package org.eclipse.php.internal.core.phar

Examples of org.eclipse.php.internal.core.phar.StatusInfo


        getShell(), provider, treeContentProvider);
    // dialog.setComparator(new JavaElementComparator());
    dialog.setAllowMultiple(false);
    dialog.setValidator(new ISelectionStatusValidator() {
      public IStatus validate(Object[] selection) {
        StatusInfo res = new StatusInfo();
        // only single selection
        if (selection.length == 1
            && (selection[0] instanceof IFile || selection[0] instanceof ISourceModule))
          res.setOK();
        // else
        // res.setError("");
        return res;
      }
    });
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.phar.StatusInfo

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.