Examples of BAFReader


Examples of aterm.pure.binary.BAFReader

  public ATerm readFromBinaryFile(InputStream stream) throws IOException{
    return readFromBinaryFile(stream, false);
  }

  private ATerm readFromBinaryFile(InputStream stream, boolean headerRead) throws ParseError, IOException {
    BAFReader r = new BAFReader(this, stream);
    return r.readFromBinaryFile(headerRead);
  }
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.