KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > context > def > ContextDefinition


1 package org.jbpm.context.def;
2
3 import org.jbpm.context.exe.*;
4 import org.jbpm.module.def.*;
5 import org.jbpm.module.exe.*;
6
7 public class ContextDefinition extends ModuleDefinition {
8
9   private static final long serialVersionUID = 1L;
10
11   public ContextDefinition() {
12   }
13
14   public ModuleInstance createInstance() {
15     return new ContextInstance();
16   }
17 }
18
Popular Tags