Package com.intellij.psi.stubs

Examples of com.intellij.psi.stubs.DefaultStubBuilder


    super(debugName, language);
  }

  @Override
  public StubBuilder getBuilder() {
    return new DefaultStubBuilder() {
      @NotNull
      protected StubElement createStubForFile(@NotNull final PsiFile file) {
        if (file instanceof CfmlFile) {
          return new CfmlFileStubImpl((CfmlFile)file);
        }
View Full Code Here


    super("ERL_FILE", ErlangLanguage.INSTANCE);
  }

  @Override
  public StubBuilder getBuilder() {
    return new DefaultStubBuilder() {
      @Override
      protected StubElement createStubForFile(@NotNull PsiFile file) {
        if (file instanceof ErlangFile) {
          return new ErlangFileStub((ErlangFile) file);
        }
View Full Code Here

TOP

Related Classes of com.intellij.psi.stubs.DefaultStubBuilder

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.