Package CH.ifa.draw.util

Examples of CH.ifa.draw.util.StorableOutput


      return this.fig;
   }

   public byte[] toBytes() throws IOException {
      ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
      StorableOutput out = new StorableOutput(byteStream);
      out.writeStorable(this);
      out.close();
      return byteStream.toByteArray();
   }
View Full Code Here

TOP

Related Classes of CH.ifa.draw.util.StorableOutput

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.