1   package org.weda.workflow;
2   
3   import java.util.Stack;
4   import org.weda.action.ActionDescriptor;
5   import org.weda.workflow.impl.AbstractEntry;
6   
7   /**
8    *
9    * @author tim
10   */
11  public class TestAbstractEntry extends AbstractEntry{
12      private String result;
13      private BasicEntryContainerTest test;
14      
15      public void setData(BasicEntryContainerTest test, String result){
16          this.result=result;
17          this.test=test;
18      }
19      
20      public boolean operate(Stack<String> expressions) 
21          throws EntryException 
22      {
23          boolean res=super.operate(expressions);
24          test.setResult(result);
25          return res;
26      }
27      
28  }