Package org.eclipse.dltk.internal.core

Examples of org.eclipse.dltk.internal.core.AbstractSourceModule


        // OpenTypeHierarchyAction_messages_unknown_import_decl);
        // case IJavaElement.CLASS_FILE:
        // result.add(((IClassFile)elem).getType());
        // return ok;
      case IModelElement.SOURCE_MODULE:
        AbstractSourceModule cu = (AbstractSourceModule) elem;
        IType[] types = cu.getTypes();
        if (types.length > 0) {
          result.addAll(Arrays.asList(types));
          return ok;
        }
        return createStatus(""); //$NON-NLS-1$
View Full Code Here


      if (binding == null) {
        return null;
      }
      source = binding.getPHPElement();
      if (source != null) {
        AbstractSourceModule module = (AbstractSourceModule) source;
        try {
          this.types = module.getTypes();
          this.methods = module.getMethods();
          return null;
        } catch (ModelException e) {
          fDescription = "MethodExitsFinder_occurrence_exit_description"; //$NON-NLS-1$
          return fDescription;
        }
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.core.AbstractSourceModule

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.