gui
Class BSFAction

java.lang.Object
  extended by gui.BSFAction

public class BSFAction
extends java.lang.Object

Class to execute ooRexx code


Field Summary
 java.lang.Object element
          The gui element object
 java.util.Vector guiElements
          A Vector that contains the gui elements
 java.lang.String ooRexxCode
          The actual ooRexx code, that will be executed
 
Constructor Summary
BSFAction()
          Default constructor
 
Method Summary
 void addElement(java.lang.Object o)
          Method to add an additional gui element to the vector, that can be accessed within the ooRexx code
 void executeOoRexx()
          Executes the ooRexx code
 java.lang.Object getElement()
          Method that returns the gui element
 java.lang.String getOoRexxCode()
          Method that returns the ooRexx code
 void setElement(java.lang.Object o)
          Method to set the gui element and add it to the vector, so that it can be accessed within the ooRexx code
 void setOoRexxCode(java.lang.String code)
          Method to set the ooRexx code
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ooRexxCode

public java.lang.String ooRexxCode
The actual ooRexx code, that will be executed


element

public java.lang.Object element
The gui element object


guiElements

public java.util.Vector guiElements
A Vector that contains the gui elements

Constructor Detail

BSFAction

public BSFAction()
Default constructor

Method Detail

getOoRexxCode

public java.lang.String getOoRexxCode()
Method that returns the ooRexx code


setOoRexxCode

public void setOoRexxCode(java.lang.String code)
Method to set the ooRexx code


getElement

public java.lang.Object getElement()
Method that returns the gui element


setElement

public void setElement(java.lang.Object o)
Method to set the gui element and add it to the vector, so that it can be accessed within the ooRexx code


addElement

public void addElement(java.lang.Object o)
Method to add an additional gui element to the vector, that can be accessed within the ooRexx code


executeOoRexx

public void executeOoRexx()
Executes the ooRexx code