Package org.uengine.processdesigner

Examples of org.uengine.processdesigner.ActivityTypeDescriptor


public class XPDSerializer extends XStreamSerializer{
  public static void main(String args[]) throws Exception{
   
    ArrayList list = new ArrayList();
    ActivityTypeDescriptor descr = new ActivityTypeDescriptor();
    descr.setActivityTypeClass("org.uengine.kernel");
    descr.setGroup("name");
    list.add(descr);
    list.add(descr);
   
    XPDSerializer xpdSer = new XPDSerializer();
    xpdSer.serialize(list, System.out, null);
View Full Code Here

TOP

Related Classes of org.uengine.processdesigner.ActivityTypeDescriptor

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.