1 package org.jbpm.graph.node; 2 3 import org.jbpm.graph.def.*; 4 import org.jbpm.graph.exe.*; 5 6 public class State extends Node { 7 8 private static final long serialVersionUID = 1L; 9 10 public State() { 11 this(null); 12 } 13 14 public State(String name) { 15 super( name ); 16 } 17 18 public void execute(ExecutionContext executionContext) { 19 } 20 } 21 | Popular Tags |