com.businessobjects.jsf.sdk.event
Class CommandEvent

java.lang.Object
  |
  +--ActionEvent
        |
        +--com.businessobjects.jsf.sdk.event.CommandEvent
Direct Known Subclasses:
SortClickedEvent

public class CommandEvent
extends ActionEvent

Base class used by SortClickedEvent.

See Also:
Serialized Form

Constructor Summary
CommandEvent(UIComponent component, java.lang.String commandName, java.util.List commandArgument)
           
 
Method Summary
 java.util.List getCommandArgument()
           Gets the arguments associated with the command.
 java.lang.String getCommandName()
           Gets the name of the command (e.g. sort).
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CommandEvent

public CommandEvent(UIComponent component,
                    java.lang.String commandName,
                    java.util.List commandArgument)
Method Detail

getCommandName

public java.lang.String getCommandName()

Gets the name of the command (e.g. sort).

Returns:
A String that represents the command name.

getCommandArgument

public java.util.List getCommandArgument()

Gets the arguments associated with the command.

Returns:
A List that contains the command arguments.