Package org.eclipse.dltk.core

Examples of org.eclipse.dltk.core.ICodeAssist


     * offset is behind the word.
     */
    if (hoverRegion.getLength() == 0)
      return null;
    IModelElement[] elements = null;
    ICodeAssist resolve = getCodeAssist();
    if (resolve != null) {
      try {
        elements = resolve.codeSelect(hoverRegion.getOffset(),
            hoverRegion.getLength());

        if ((elements == null || elements.length == 0)
            && resolve instanceof ISourceModule) {
          elements = PHPModelUtils.getTypeInString(
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.core.ICodeAssist

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.