KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > graph > log > TokenCreateLog


1 package org.jbpm.graph.log;
2
3 import org.jbpm.graph.exe.*;
4 import org.jbpm.logging.log.*;
5
6 public class TokenCreateLog extends ProcessLog {
7
8   private static final long serialVersionUID = 1L;
9   
10   protected Token child = null;
11   
12   public TokenCreateLog() {
13   }
14
15   public TokenCreateLog(Token child) {
16     this.child = child;
17   }
18
19   public String JavaDoc toString() {
20     return "tokencreate["+child.getFullName()+"]";
21   }
22   
23   public Token getChild() {
24     return child;
25   }
26 }
27
Popular Tags