Package org.eclipse.bpel.model.extensions

Examples of org.eclipse.bpel.model.extensions.BPELActivityDeserializer.unmarshall()


      QName qname = new QName(namespace, localName);
      BPELActivityDeserializer deserializer = extensionRegistry.getActivityDeserializer(qname);
      if (deserializer != null) {
        // Deserialize the DOM element and return the new Activity
        Map nsMap = getAllNamespacesForElement((Element)child);
        Activity activity = deserializer.unmarshall(qname,child,process,nsMap,extensionRegistry,resource.getURI(), this);
        // Now let's do the standard attributes and elements
        setStandardAttributes((Element)child, activity);
        setStandardElements((Element)child, activity);
       
        // Don't do extensibility because extensionActivity is not extensible.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.