Package org.eclipse.dltk.ui.text.completion

Examples of org.eclipse.dltk.ui.text.completion.IScriptCompletionProposal


    return p.getDisplayString();
  }

  private int getRelevance(ICompletionProposal obj) {
    if (obj instanceof IScriptCompletionProposal) {
      IScriptCompletionProposal jcp = (IScriptCompletionProposal) obj;
      return jcp.getRelevance();
    } else if (obj instanceof TemplateProposal) {
      TemplateProposal tp = (TemplateProposal) obj;
      return tp.getRelevance();
    }
    // catch all
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.ui.text.completion.IScriptCompletionProposal

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.