Package org.eclipse.php.internal.core.codeassist.contexts

Examples of org.eclipse.php.internal.core.codeassist.contexts.InterfaceDeclarationKeywordContext


    ICompletionContext context = getContext();
    if (!(context instanceof InterfaceDeclarationKeywordContext)) {
      return;
    }
   
    InterfaceDeclarationKeywordContext concreteContext = (InterfaceDeclarationKeywordContext) context;
    SourceRange replaceRange = getReplacementRange(concreteContext);

    if (!concreteContext.hasExtends()) {
      reporter.reportKeyword("extends", getSuffix(concreteContext), replaceRange); //$NON-NLS-1$
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.core.codeassist.contexts.InterfaceDeclarationKeywordContext

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.