Package org.eclipse.jdt.internal.ui.dialogs

Examples of org.eclipse.jdt.internal.ui.dialogs.StatusInfo


      try {
        createProject(fCurrProject, fCurrProjectLocation, new SubProgressMonitor(monitor, 2));
      } catch (CoreException e) {
        if (e.getStatus().getCode() == IResourceStatus.FAILED_READ_METADATA) {
          result= new StatusInfo(IStatus.INFO, Messages.format(NewWizardMessages.NewJavaProjectWizardPageTwo_DeleteCorruptProjectFile_message, e.getLocalizedMessage()));

          deleteProjectFile(realLocation);
          if (fCurrProject.exists())
            fCurrProject.delete(true, null);
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.ui.dialogs.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.