Examples of IModule


Examples of org.eclipse.wst.server.core.IModule

        Trace.tracePoint("Entry", "GeronimoServerBehaviourDelegate.getModulePath", Arrays.asList(module).toString(), baseURL);

    IPath modulePath = new Path(baseURL.getFile());

    if (module.length == 2) {
      IModule workingModule = module[module.length - 1];
      modulePath = modulePath.append(workingModule.getName());
      if (GeronimoUtils.isWebModule(workingModule)) {
        modulePath = modulePath.addFileExtension("war");
      } else if (GeronimoUtils.isEjbJarModule(workingModule)) {
        modulePath = modulePath.addFileExtension("jar");
      } else if (GeronimoUtils.isRARModule(workingModule)) {
View Full Code Here

Examples of org.python.pydev.core.IModule

            callingBoundMethod = true;
            if (initNode == null) {
                String className = ((NameTok) classDef.name).id;

                Definition foundDef = sourceToken.getDefinition();
                IModule mod = this.current;
                if (foundDef != null) {
                    mod = foundDef.module;
                }
                SimpleNode n = NodeUtils.getNodeFromPath(classDef, "__init__");
                if (n instanceof FunctionDef) {
                    initNode = n;

                } else {
                    IDefinition[] definition = mod.findDefinition(CompletionStateFactory.getEmptyCompletionState(
                            className + ".__init__", this.nature, this.completionCache), -1, -1, this.nature);
                    for (IDefinition iDefinition : definition) {
                        Definition d = (Definition) iDefinition;
                        if (d.ast instanceof FunctionDef) {
                            initNode = d.ast;
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.