oracle.cabo.servlet.ui.data
Class PageURLBoundValue.Parameter
java.lang.Object
|
+--oracle.cabo.servlet.ui.data.PageURLBoundValue.Parameter
- All Implemented Interfaces:
- java.lang.Cloneable
- Enclosing class:
- PageURLBoundValue
- public static class PageURLBoundValue.Parameter
- extends java.lang.Object
- implements java.lang.Cloneable
A single parameter of an URL. This class is used for both Page properties and PageEvent parameters
Method Summary |
java.lang.Object |
clone()
Makes a clone of the parameter. |
java.lang.String |
getKey()
Gets the key of the parameter. |
java.lang.String |
getValue()
Returns a fixed value of the parameter. |
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 |
PageURLBoundValue.Parameter
public PageURLBoundValue.Parameter()
- Create a Parameter.
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.
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