Package org.eclipse.bpel.model.extensions

Examples of org.eclipse.bpel.model.extensions.BPELActivityDeserializer


      // We found a child element. Look up a deserializer for this
      // activity and call it.
      String localName = child.getLocalName();
      String namespace = child.getNamespaceURI();
      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

Related Classes of org.eclipse.bpel.model.extensions.BPELActivityDeserializer

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.