com.oroad.stxx.action
Class ActionTransforms

java.lang.Object
  extended bycom.oroad.stxx.action.ActionTransforms

public class ActionTransforms
extends java.lang.Object

Holds all the transforms

Author:
Jeff Pennal, Don Brown

Constructor Summary
ActionTransforms()
           
 
Method Summary
 void addTransform(ActionTransform transform)
          Register a logical transforming to the set configured for this servlet.
 ActionTransform findTransform(java.lang.String name)
          Return the transforming associated with the specified logical name, if any; otherwise return null.
 java.lang.String[] findTransforms()
          Return the set of logical names for transforms defined in this collection.
 void removeTransform(ActionTransform transform)
          Deregister a transforming from the set configured for this servlet.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActionTransforms

public ActionTransforms()
Method Detail

addTransform

public void addTransform(ActionTransform transform)
Register a logical transforming to the set configured for this servlet.

Parameters:
transform - The transforming to be added

findTransform

public ActionTransform findTransform(java.lang.String name)
Return the transforming associated with the specified logical name, if any; otherwise return null.

Parameters:
name - Logical name of the requested transforming
Returns:
The found transform

findTransforms

public java.lang.String[] findTransforms()
Return the set of logical names for transforms defined in this collection. If there are no such transforms, a zero-length array is returned.

Returns:
The names of the transforms

removeTransform

public void removeTransform(ActionTransform transform)
Deregister a transforming from the set configured for this servlet.

Parameters:
transform - The transforming to be deregistered