Package org.eclipse.php.internal.ui.text.correction.proposals

Examples of org.eclipse.php.internal.ui.text.correction.proposals.ChangeCorrectionProposal


        }
      }
    }

    if (res == null || res.length == 0) {
      return new ICompletionProposal[] { new ChangeCorrectionProposal(
          CorrectionMessages.NoCorrectionProposal_description,
          new NullChange(""), 0, null) }; //$NON-NLS-1$
    }
    if (res.length > 1) {
      Arrays.sort(res, new CompletionProposalComparator());
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.ui.text.correction.proposals.ChangeCorrectionProposal

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.