|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectjavax.faces.component.UIComponent
oracle.adf.view.faces.component.UIXComponent
oracle.adf.view.faces.component.UIXComponentBase
oracle.adf.view.faces.component.UIXSingleStep
UIXSingleStep is a base abstraction for components that implement ActionSource and navigate back and forth through a sequence of known steps.
| Type | Phases | Description |
|---|---|---|
javax.faces.event.ActionEvent |
Invoke Application Apply Request Values |
Event delivered when the "action" of the component has been invoked; for example, by clicking on a button. The action may result in page navigation. |
| Field Summary | |
static java.lang.String |
COMPONENT_FAMILY
|
static java.lang.String |
COMPONENT_TYPE
|
static PropertyKey |
MAX_STEP_KEY
|
static PropertyKey |
NEXT_ACTION_KEY
|
static PropertyKey |
NEXT_ACTION_LISTENER_KEY
|
static java.lang.Object |
NEXT_ACTION_TYPE
|
static PropertyKey |
PREVIOUS_ACTION_KEY
|
static PropertyKey |
PREVIOUS_ACTION_LISTENER_KEY
|
static java.lang.Object |
PREVIOUS_ACTION_TYPE
|
static PropertyKey |
SELECTED_STEP_KEY
|
static PropertyKey |
TEXT_KEY
|
static FacesBean.Type |
TYPE
|
| Fields inherited from class oracle.adf.view.faces.component.UIXComponentBase |
BINDING_KEY, ID_KEY, RENDERED_KEY, RENDERER_TYPE_KEY, TRANSIENT_KEY |
| Constructor Summary | |
|
UIXSingleStep()
Construct an instance of the UIXSingleStep. |
protected |
UIXSingleStep(java.lang.String rendererType)
Construct an instance of the UIXSingleStep. |
| Method Summary | |
void |
addActionListener(ActionListener listener)
|
void |
broadcast(FacesEvent event)
|
MethodBinding |
getAction()
|
MethodBinding |
getActionListener()
|
ActionListener[] |
getActionListeners()
|
java.lang.Object |
getActionType()
|
protected FacesBean.Type |
getBeanType()
|
java.lang.String |
getFamily()
|
int |
getMaxStep()
Gets the last possible step. |
MethodBinding |
getNextAction()
Gets a reference to an action method that will be called when the singleStep component navigates to the next step, or the static outcome of the action. |
MethodBinding |
getNextActionListener()
Gets a method reference to an action listener that will be called when the singleStep component navigates to the next step. |
MethodBinding |
getPreviousAction()
Gets a reference to an action method that will be called when the singleStep component navigates to the previous step, or the static outcome of the action. |
MethodBinding |
getPreviousActionListener()
Gets a method reference to an action listener that will be called when the singleStep component navigates to the previous step. |
int |
getSelectedStep()
Gets the current step. |
java.lang.String |
getText()
Gets the text description of items being navigated. |
boolean |
isImmediate()
returns true if the actionType is PREVIOUS_ACTION_TYPE |
void |
queueEvent(FacesEvent e)
|
void |
removeActionListener(ActionListener listener)
|
java.lang.Object |
saveState(FacesContext context)
|
void |
setAction(MethodBinding action)
|
void |
setActionListener(MethodBinding listener)
|
void |
setActionType(java.lang.Object actionType)
|
void |
setImmediate(boolean immediate)
no-op. |
void |
setMaxStep(int maxStep)
Sets the last possible step. |
void |
setMaxStep(long maxStep)
Sets the last possible step. |
void |
setNextAction(MethodBinding nextAction)
Sets a reference to an action method that will be called when the singleStep component navigates to the next step, or the static outcome of the action. |
void |
setNextActionListener(MethodBinding nextActionListener)
Sets a method reference to an action listener that will be called when the singleStep component navigates to the next step. |
void |
setPreviousAction(MethodBinding previousAction)
Sets a reference to an action method that will be called when the singleStep component navigates to the previous step, or the static outcome of the action. |
void |
setPreviousActionListener(MethodBinding previousActionListener)
Sets a method reference to an action listener that will be called when the singleStep component navigates to the previous step. |
void |
setSelectedStep(int selectedStep)
Sets the current step. |
void |
setSelectedStep(long selectedStep)
Sets the current step. |
void |
setText(java.lang.String text)
Sets the text description of items being navigated. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
public static final FacesBean.Type TYPE
public static final PropertyKey SELECTED_STEP_KEY
public static final PropertyKey MAX_STEP_KEY
public static final PropertyKey TEXT_KEY
public static final PropertyKey PREVIOUS_ACTION_LISTENER_KEY
public static final PropertyKey NEXT_ACTION_LISTENER_KEY
public static final PropertyKey NEXT_ACTION_KEY
public static final PropertyKey PREVIOUS_ACTION_KEY
public static final java.lang.String COMPONENT_FAMILY
public static final java.lang.String COMPONENT_TYPE
public static final java.lang.Object NEXT_ACTION_TYPE
public static final java.lang.Object PREVIOUS_ACTION_TYPE
| Constructor Detail |
public UIXSingleStep()
protected UIXSingleStep(java.lang.String rendererType)
| Method Detail |
public void queueEvent(FacesEvent e)
queueEvent in class UIXComponentBasepublic java.lang.Object getActionType()
public void setActionType(java.lang.Object actionType)
public java.lang.Object saveState(FacesContext context)
saveState in interface StateHoldersaveState in class UIXComponentBase
public void broadcast(FacesEvent event)
throws AbortProcessingException
broadcast in class UIXComponentBaseAbortProcessingExceptionpublic MethodBinding getAction()
getAction in interface ActionSourcepublic void setAction(MethodBinding action)
setAction in interface ActionSourcepublic MethodBinding getActionListener()
getActionListener in interface ActionSourcepublic void setActionListener(MethodBinding listener)
setActionListener in interface ActionSourcepublic void addActionListener(ActionListener listener)
addActionListener in interface ActionSourcepublic void removeActionListener(ActionListener listener)
removeActionListener in interface ActionSourcepublic ActionListener[] getActionListeners()
getActionListeners in interface ActionSourcepublic boolean isImmediate()
isImmediate in interface ActionSourcepublic void setImmediate(boolean immediate)
setImmediate in interface ActionSourcepublic final int getSelectedStep()
public final void setSelectedStep(int selectedStep)
public final void setSelectedStep(long selectedStep)
public final int getMaxStep()
public final void setMaxStep(int maxStep)
public final void setMaxStep(long maxStep)
public final java.lang.String getText()
public final void setText(java.lang.String text)
public final MethodBinding getPreviousActionListener()
public final void setPreviousActionListener(MethodBinding previousActionListener)
public final MethodBinding getNextActionListener()
public final void setNextActionListener(MethodBinding nextActionListener)
public final MethodBinding getNextAction()
public final void setNextAction(MethodBinding nextAction)
public final MethodBinding getPreviousAction()
public final void setPreviousAction(MethodBinding previousAction)
public java.lang.String getFamily()
getFamily in class UIXComponentBaseprotected FacesBean.Type getBeanType()
getBeanType in class UIXComponentBase
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||