|
Oracle UIX API Reference Release 2.1.22.0.0 B12196-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.cabo.ui.DeprecatedUINode | +--oracle.cabo.ui.BaseUINode | +--oracle.cabo.ui.BaseMutableUINode | +--oracle.cabo.ui.beans.BaseWebBean | +--oracle.cabo.ui.beans.MarlinBean | +--oracle.cabo.ui.beans.form.FormElementBean
Common superclass for beans that define form elements.
Constructor Summary | |
protected |
FormElementBean(boolean ignored,
java.lang.String localName)
Construct an instance of the FormElementBean. |
|
FormElementBean(java.lang.String localName)
Construct an instance of the FormElementBean. |
|
FormElementBean(java.lang.String localName,
java.lang.String id)
Construct an instance of the FormElementBean. |
Method Summary | |
java.lang.String |
getName()
Gets the name used to identify the element in client-to-client or client-to-server events. |
static java.lang.String |
getName(MutableUINode bean)
Gets the name used to identify the element in client-to-client or client-to-server events. |
java.lang.String |
getOnBlur()
Gets the event handler for when the element loses focus. |
static java.lang.String |
getOnBlur(MutableUINode bean)
Gets the event handler for when the element loses focus. |
java.lang.String |
getOnFocus()
Gets the event handler for when the element receives focus. |
static java.lang.String |
getOnFocus(MutableUINode bean)
Gets the event handler for when the element receives focus. |
boolean |
isDisabled()
Gets whether the element is disabled. |
static boolean |
isDisabled(MutableUINode bean)
Gets whether the element is disabled. |
boolean |
isReadOnly()
Gets whether the element is read-only. |
static boolean |
isReadOnly(MutableUINode bean)
Gets whether the element is read-only. |
void |
setDisabled(boolean disabled)
Sets whether the element is disabled. |
static void |
setDisabled(MutableUINode bean,
boolean disabled)
Sets whether the element is disabled. |
static void |
setName(MutableUINode bean,
java.lang.String name)
Sets the name used to identify the element in client-to-client or client-to-server events. |
void |
setName(java.lang.String name)
Sets the name used to identify the element in client-to-client or client-to-server events. |
void |
setNameBinding(BoundValue boundValue)
Binds the the name used to identify the element in client-to-client or client-to-server events. |
static void |
setNameBinding(MutableUINode bean,
BoundValue boundValue)
Binds the the name used to identify the element in client-to-client or client-to-server events. |
static void |
setNameBinding(MutableUINode bean,
java.lang.Object selectKey)
Binds the the name used to identify the element in client-to-client or client-to-server events. |
static void |
setNameBinding(MutableUINode bean,
java.lang.String dataNamespace,
java.lang.String dataName,
java.lang.Object selectKey)
Binds the the name used to identify the element in client-to-client or client-to-server events. |
void |
setNameBinding(java.lang.Object selectKey)
Binds the the name used to identify the element in client-to-client or client-to-server events. |
void |
setNameBinding(java.lang.String dataNamespace,
java.lang.String dataName,
java.lang.Object selectKey)
Binds the the name used to identify the element in client-to-client or client-to-server events. |
static void |
setOnBlur(MutableUINode bean,
java.lang.String onBlur)
Sets the event handler for when the element loses focus. |
void |
setOnBlur(java.lang.String onBlur)
Sets the event handler for when the element loses focus. |
static void |
setOnFocus(MutableUINode bean,
java.lang.String onFocus)
Sets the event handler for when the element receives focus. |
void |
setOnFocus(java.lang.String onFocus)
Sets the event handler for when the element receives focus. |
void |
setReadOnly(boolean readOnly)
Sets whether the element is read-only. |
static void |
setReadOnly(MutableUINode bean,
boolean readOnly)
Sets whether the element is read-only. |
Methods inherited from class oracle.cabo.ui.beans.MarlinBean |
isEqualMarlinName |
Methods inherited from class oracle.cabo.ui.BaseUINode |
getAttributeNames, getAttributeValue, getAttributeValueImpl, getChildArray, getChildNames, getIndexedChild, getIndexedChild, getIndexedChildCount, getLocalName, getNamedChild, getNamespaceURI, getNodeID, getNodeRole, getPreorderDescendentAttributeValue, getRawAttributeValue, getRenderedUINode, getRenderer, getRenderer, render, render, toString |
Methods inherited from class oracle.cabo.ui.DeprecatedUINode |
getAttributeValue, getChildNames, getNamedChild |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface oracle.cabo.ui.UINode |
getAttributeNames, getAttributeValue, getAttributeValue, getChildNames, getChildNames, getIndexedChild, getIndexedChild, getIndexedChildCount, getLocalName, getNamedChild, getNamedChild, getNamespaceURI, getNodeID, getNodeRole, getRawAttributeValue, render, render |
Constructor Detail |
public FormElementBean(java.lang.String localName)
public FormElementBean(java.lang.String localName, java.lang.String id)
protected FormElementBean(boolean ignored, java.lang.String localName)
Method Detail |
public final java.lang.String getName()
This is a required property on the bean.
public final void setName(java.lang.String name)
This is a required property on the bean.
public final void setNameBinding(BoundValue boundValue)
This is a required property on the bean.
boundValue
- a BoundValue implementation to be used
to retrieve the value.public final void setNameBinding(java.lang.Object selectKey)
This is a required property on the bean.
selectKey
- the key to be passed to selectValue()
on the
current DataObject
, e.g., the DataObject for the current
table row.public final void setNameBinding(java.lang.String dataNamespace, java.lang.String dataName, java.lang.Object selectKey)
This is a required property on the bean.
dataNamespace
- the namespace to be passed to
RenderingContext.getDataObject()
dataName
- the name to be passed to
RenderingContext.getDataObject()
selectKey
- the key to be passed to selectValue()
on the
DataObject
.public final boolean isReadOnly()
public final void setReadOnly(boolean readOnly)
public final boolean isDisabled()
public final void setDisabled(boolean disabled)
public final java.lang.String getOnFocus()
public final void setOnFocus(java.lang.String onFocus)
public final java.lang.String getOnBlur()
public final void setOnBlur(java.lang.String onBlur)
public static java.lang.String getName(MutableUINode bean)
This is a required property on the bean.
public static void setName(MutableUINode bean, java.lang.String name)
This is a required property on the bean.
public static void setNameBinding(MutableUINode bean, BoundValue boundValue)
This is a required property on the bean.
boundValue
- a BoundValue implementation to be used
to retrieve the value.public static void setNameBinding(MutableUINode bean, java.lang.Object selectKey)
This is a required property on the bean.
selectKey
- the key to be passed to selectValue()
on the
current DataObject
, e.g., the DataObject for the current
table row.public static void setNameBinding(MutableUINode bean, java.lang.String dataNamespace, java.lang.String dataName, java.lang.Object selectKey)
This is a required property on the bean.
dataNamespace
- the namespace to be passed to
RenderingContext.getDataObject()
dataName
- the name to be passed to
RenderingContext.getDataObject()
selectKey
- the key to be passed to selectValue()
on the
DataObject
.public static boolean isReadOnly(MutableUINode bean)
public static void setReadOnly(MutableUINode bean, boolean readOnly)
public static boolean isDisabled(MutableUINode bean)
public static void setDisabled(MutableUINode bean, boolean disabled)
public static java.lang.String getOnFocus(MutableUINode bean)
public static void setOnFocus(MutableUINode bean, java.lang.String onFocus)
public static java.lang.String getOnBlur(MutableUINode bean)
public static void setOnBlur(MutableUINode bean, java.lang.String onBlur)
|
Oracle UIX API Reference Release 2.1.22.0.0 B12196-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |