|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--UICommand | +--com.businessobjects.jsf.sdk.components.UIBaseControl
The base component from which all other BusinessObjects Enterprise JSF components inherit.
Constructor Summary | |
UIBaseControl()
|
Method Summary | |
IItemSource |
getItemSource()
Gets the source of the item bound to the component. |
java.util.Locale |
getLocale()
Gets the component's locale. |
java.lang.String |
getTitle()
Gets the title attribute for the component. |
boolean |
isAutoHandleEvents()
Returns a value that indicates whether the component assumes responsibility for handling its own events. |
boolean |
isEnabled()
Returns a value that indicates whether the component is enabled. |
void |
restoreState(FacesContext context,
java.lang.Object state)
For internal use only. |
java.lang.Object |
saveState(FacesContext context)
For internal use only. |
void |
setAutoHandleEvents(boolean autoHandleEvents)
Sets a value that indicates whether the component assumes responsibility for handling its own events. |
void |
setEnabled(boolean enabled)
Sets a value that indicates whether the component is enabled. |
void |
setItemSource(IItemSource itemSource)
Sets the source of the item to be bound to the component. |
void |
setLocale(java.util.Locale locale)
Sets the component's locale. |
void |
setTitle(java.lang.String title)
Sets the title attribute for the component. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public UIBaseControl()
Method Detail |
public IItemSource getItemSource()
Gets the source of the item bound to the component. This is either a EnterpriseItem
bean or EntepriseItems
bean.
IItemSource
object.public void setItemSource(IItemSource itemSource)
Sets the source of the item to be bound to the component. This can be either a EnterpriseItem
bean or EntepriseItems
bean.
public boolean isEnabled()
Returns a value that indicates whether the component is enabled. If a component is disabled, then the user cannot change the state of the component (for example, the user cannot enter text or submit new values).
true
if the component is enabled, otherwise, false
.public void setEnabled(boolean enabled)
Sets a value that indicates whether the component is enabled. If a component is disabled, then the user cannot change the state of the component (for example, the user cannot enter text or submit new values).
enabled
- true
to enable the component, otherwise, false
.public java.lang.String getTitle()
Gets the title attribute for the component. The title attribute is the title visible as a tooltip during mouseover.
String
public void setTitle(java.lang.String title)
Sets the title attribute for the component. The title attribute is the title visible as a tooltip during mouseover.
title
- the title attribute for the component as a String
public java.util.Locale getLocale()
Gets the component's locale.
IItemSource
object.public void setLocale(java.util.Locale locale)
Sets the component's locale.
locale
- The component's locale.public boolean isAutoHandleEvents()
Returns a value that indicates whether the component assumes responsibility for handling its own events.
true
if the component will react to its own events using a built-in event handler, otherwise, false
.public void setAutoHandleEvents(boolean autoHandleEvents)
Sets a value that indicates whether the component assumes responsibility for handling its own events.
Pass in true
if the component will react to its own events using a built-in event handler,
otherwise, set to false
.
autoHandleEvents
- true
if the component will react to its own events using a built-in event handler, otherwise, false
.public java.lang.Object saveState(FacesContext context)
For internal use only.
public void restoreState(FacesContext context, java.lang.Object state)
For internal use only.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |