Package org.eclipse.dltk.internal.core.hierarchy

Examples of org.eclipse.dltk.internal.core.hierarchy.FakeType


          phpToken = concreteContext
              .getPHPToken(phpToken.getStart() - 1);
        }

        if (phpToken != null && isStaticCall(phpToken.getType())) {
          result.add(new FakeField(new FakeType(
              (ModelElement) concreteContext.getSourceModule(),
              STD_CLASS), CLASS_KEYWORD, Modifiers.AccConstant
              | Modifiers.AccPublic));
        }
      } catch (BadLocationException e) {
View Full Code Here


  public IModelElement getParent() {
 
    // avoid showing the same name twice in each codeassist
    // popup row, ie:
    // AcmeDemoBundle - AcmeDemoBundle
    return new FakeType(parent, "");   
  }
View Full Code Here

  public IModelElement getParent() {
 
    // avoid showing the same name twice in each codeassist
    // popup row, ie:
    // AcmeDemoBundle - AcmeDemoBundle
    return new FakeType(parent, "");   
   
 
View Full Code Here

  public IModelElement getParent() {
 
    // avoid showing the same name twice in each codeassist
    // popup row, ie:
    // AcmeDemoBundle - AcmeDemoBundle
    return new FakeType(parent, "");   
   
  }
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.core.hierarchy.FakeType

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.