Examples of ClFileStubImpl


Examples of org.jetbrains.plugins.clojure.psi.stubs.impl.ClFileStubImpl

* @author ilyas
*/
public class ClojureFileStubBuilder extends DefaultStubBuilder {
  protected StubElement createStubForFile(final PsiFile file) {
    if (file instanceof ClojureFile && ((ClojureFile) file).isClassDefiningFile()) {
      return new ClFileStubImpl((ClojureFile)file);
    }

    return super.createStubForFile(file);
  }
View Full Code Here

Examples of org.jetbrains.plugins.clojure.psi.stubs.impl.ClFileStubImpl

  @Override
  public ClFileStub deserialize(final StubInputStream dataStream, final StubElement parentStub) throws IOException {
    StringRef packName = dataStream.readName();
    StringRef name = dataStream.readName();
    boolean isScript = dataStream.readBoolean();
    return new ClFileStubImpl(packName, name, isScript);
  }
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.