org.jbpm.wire.binding
Class ContextBinding

java.lang.Object
  extended by org.jbpm.wire.binding.ContextBinding
All Implemented Interfaces:
Binding

public class ContextBinding
extends java.lang.Object
implements Binding

This Binding specifies a ContextDescriptor, which returns the current WireContext.

A context descriptor is defined by a <context> xml element.

This element can have an attribute "name", which specifies the name of the created object in the WireContext.

Example

The following Xml declaration will return the current context and store it under the name 'c'.
 <objects>
   <context name='c'/>
 </objects>

Author:
Tom Baeyens, Guillaume Porcher (documentation)
See Also:
WireParser

Constructor Summary
ContextBinding()
           
 
Method Summary
 java.lang.Object parse(org.w3c.dom.Element element, Parse parse, Parser parser)
          translates the given element into a domain model java object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ContextBinding

public ContextBinding()
Method Detail

parse

public java.lang.Object parse(org.w3c.dom.Element element,
                              Parse parse,
                              Parser parser)
Description copied from interface: Binding
translates the given element into a domain model java object. Use the parse to report problems.

Specified by:
parse in interface Binding
Returns:
the domain model java object.
See Also:
Parser