Package aterm.pure.binary

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

Related Classes of aterm.pure.binary.BAFReader

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.