Examples of ErlangTypeDefinitionStub


Examples of org.intellij.erlang.stubs.ErlangTypeDefinitionStub

    return new ErlangTypeDefinitionImpl(stub, this);
  }

  @Override
  public ErlangTypeDefinitionStub createStub(@NotNull ErlangTypeDefinition psi, StubElement parentStub) {
    return new ErlangTypeDefinitionStub(parentStub, this, psi.getName(), psi.getArity());
  }
View Full Code Here

Examples of org.intellij.erlang.stubs.ErlangTypeDefinitionStub

  }

  @NotNull
  @Override
  public ErlangTypeDefinitionStub deserialize(@NotNull StubInputStream dataStream, StubElement parentStub) throws IOException {
    return new ErlangTypeDefinitionStub(parentStub, this, dataStream.readName(), dataStream.readInt());
  }
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.