Package net.sf.joafip.entity

Examples of net.sf.joafip.entity.ClassForExport


    EnumForTest.VAL1.setObject(Integer.valueOf(100));

    final Object object = "bonjour";
    bobForExport.setObject(object);

    final ClassForExport classForExport = new ClassForExport();
    classForExport.setField("field1");
    classForExport.setField2("field2");
    classForExport.setTransientField("transientField1");
    classForExport.setTransientField2("transientField2");

    final List<Object> objectList = new LinkedList<Object>();
    objectList.add(object);
    objectList.add("string");
    objectList.add(classForExport);
View Full Code Here

TOP

Related Classes of net.sf.joafip.entity.ClassForExport

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.