Package dummy

Examples of dummy.Test


*/
public class TestMain
{
    public static void main(String[] args)
    {
        Test refObj = new Test();
        refObj.setAge(42);
        refObj.setName("quarante deux");

        Test inObj = new Test();
        inObj.setAge(42);
        inObj.setName("quarante deux");

        refObj.setTest(inObj);
       
        GenericSerializer ser = new Base64ByteSerialization();
       
        String serd  = ser.serializeObject(refObj);
       
        Log.log(serd);
       
        Test res = (Test)ser.unserializeObject(serd);
       
        Log.log(res.getName());
    }
View Full Code Here

TOP

Related Classes of dummy.Test

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.