Package aterm

Examples of aterm.AFun.serialize()


    public void voidVisitAppl(ATermAppl appl) throws VisitFailure {
      AFun fun = appl.getAFun();
      int nameLength;
      try{
        nameLength = fun.serialize(stream);
      }catch(IOException ioex){
        throw new VisitFailure(ioex.getMessage());
      }
      position += nameLength;
      if (fun.getArity() > 0 || nameLength == 0) {
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.