Back to project page Abstract-Model.
The source code is released under:
Apache License
If you think the Android project Abstract-Model listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.logician.abstractModel; /* w ww. j av a2 s .co m*/ /** * Simple interface for defining classes that will convert their fields to binary and back. * * @author Logician * */ public interface BinarySerializable { public void fromBinary(byte[] binary); public byte[] toBinary(); }