Package org.eclipse.jface.contentassist

Examples of org.eclipse.jface.contentassist.ISubjectControlContentAssistProcessor.computeContextInformation()


    List ret = new LinkedList();
    for (Iterator it = fProcessors.iterator(); it.hasNext();) {
      Object o = it.next();
      if (o instanceof ISubjectControlContentAssistProcessor) {
        ISubjectControlContentAssistProcessor p = (ISubjectControlContentAssistProcessor) o;
        IContextInformation[] informations = p.computeContextInformation(contentAssistSubjectControl, documentOffset);
        if (informations != null && informations.length > 0) {
          for (int i = 0; i < informations.length; i++)
            ret.add(new WrappedContextInformation(informations[i], p));
          fErrorMessage = null; // Hide previous errors
        } else {
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.