org.opa.core
Class OPAActionBundle

java.lang.Object
  extended byorg.opa.core.OPAActionBundle

public class OPAActionBundle
extends java.lang.Object

This class represents a group of OPAActions. OPAActionBundle subclasses are used by OPA to group GUI objects, typically JButtons, into seperate toolbars. All OPAActions in the same bundle will be added to the same toolbar Changed Mar 13, 2004 - changed to a normal class to make it simpler to use.


Constructor Summary
OPAActionBundle(OPAAction[] actions)
          Creates an OPAActionBundle.
 
Method Summary
 OPAAction[] getActions()
          This returns a bundle of OPAActions.
 java.util.Iterator iterator()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OPAActionBundle

public OPAActionBundle(OPAAction[] actions)
Creates an OPAActionBundle. This is simply a container that holds OPAActions. OPA uses the OPAActionBundle to group OPAActions together, in creating application toolbars for example.

Parameters:
actions - The array of OPAActions to add together
Method Detail

getActions

public OPAAction[] getActions()
This returns a bundle of OPAActions.


iterator

public java.util.Iterator iterator()