1 package org.jbpm.context.log; 2 3 import org.jbpm.context.exe.*; 4 5 public class VariableDeleteLog extends VariableLog { 6 7 private static final long serialVersionUID = 1L; 8 9 public VariableDeleteLog() { 10 } 11 12 public VariableDeleteLog(VariableInstance variableInstance) { 13 super(variableInstance); 14 } 15 16 public String toString() { 17 return variableInstance+" deleted"; 18 } 19 20 } 21 | Popular Tags |