UIX 2.2.16

oracle.cabo.ui.collection
Class Parameter

java.lang.Object
  |
  +--oracle.cabo.ui.collection.Parameter
All Implemented Interfaces:
java.lang.Cloneable

public class Parameter
extends java.lang.Object
implements java.lang.Cloneable

A single parameter of an URL or a form.


Constructor Summary
Parameter()
          Create a Parameter.
 
Method Summary
 java.lang.Object clone()
          Makes a clone of the parameter.
 java.lang.String getKey()
          Gets the key of the parameter.
 BoundValue getRawValue()
          Returns the unresolved BoundValue (a la getRawAttributeValue).
 java.lang.String getValue()
          Returns a fixed value of the parameter.
 java.lang.String getValue(RenderingContext context)
          Gets the value, resolving any data binding.
 void setKey(java.lang.String key)
          Sets the key of the parameter.
 void setValue(java.lang.String value)
          Sets the value of the parameter to a fixed string.
 void setValueBinding(BoundValue valueBinding)
          Sets the value of the parameter as a dynamically determined string.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Parameter

public Parameter()
Create a Parameter.
Method Detail

setKey

public void setKey(java.lang.String key)
Sets the key of the parameter.

getKey

public java.lang.String getKey()
Gets the key of the parameter.

getRawValue

public BoundValue getRawValue()
Returns the unresolved BoundValue (a la getRawAttributeValue).

setValue

public void setValue(java.lang.String value)
Sets the value of the parameter to a fixed string.

getValue

public java.lang.String getValue()
Returns a fixed value of the parameter.

setValueBinding

public void setValueBinding(BoundValue valueBinding)
Sets the value of the parameter as a dynamically determined string.

clone

public java.lang.Object clone()
Makes a clone of the parameter.
Overrides:
clone in class java.lang.Object

getValue

public java.lang.String getValue(RenderingContext context)
Gets the value, resolving any data binding.

UIX 2.2.16