Package org.jbpm.pvm.internal.wire.descriptor

Examples of org.jbpm.pvm.internal.wire.descriptor.ContextRefDescriptor


  public ContextRefBinding() {
    super("context-ref");
  }

  public Object parse(Element element, Parse parse, Parser parser) {
    ContextRefDescriptor descriptor = new ContextRefDescriptor();
    if (element.hasAttribute("context-name")) {
      descriptor.setContextName(element.getAttribute("context-name"));
    }
    return descriptor;
  }
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.wire.descriptor.ContextRefDescriptor

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.