| java.lang.Object com.sun.rave.web.ui.component.util.event.OutputMapping
OutputMapping | public class OutputMapping implements java.io.Serializable(Code) | | This class holds OutputMapping value meta information for individual
instances of Handler Objects. This information is necessary to provide
the location to store the output value for a specific invocation of a
handler. This is data consists of the name the Handler uses for the
output, the OutputType, and optionally the OutputType key to use when
storing/retrieving the output value.
author: Ken Paulsen (ken.paulsen@sun.com) |
OutputMapping | public OutputMapping(String outputName, String targetOutputType)(Code) | | Constructor with targetKey as null. This constructor will
throw an IllegalArgumentException if outputName or targetOutputType is
null.
Parameters: outputName - The name the Handler uses for output value Parameters: targetOutputType - OutputType that will store the output value See Also: OutputTypeManager throws: IllegalArumentException - If outputName or targetOutputType is null |
OutputMapping | public OutputMapping(String outputName, String targetKey, String targetOutputType)(Code) | | Constructor with all values supplied as Strings. This constructor
will throw an IllegalArgumentException if outputName or
targetOutputType is null.
Parameters: outputName - The name the Handler uses for output value Parameters: targetKey - The key the OutputType will use Parameters: targetOutputType - OutputType that will store the output value See Also: OutputTypeManager throws: IllegalArumentException - If outputName or targetOutputType is null |
getOutputKey | public String getOutputKey()(Code) | | Accessor for targetKey.
|
getOutputName | public String getOutputName()(Code) | | Accessor for outputName.
|
getOutputType | public OutputType getOutputType()(Code) | | Accessor for targetOutputType.
|
|
|