public abstract class SwitchCase
extends java.lang.Object
Represents a case within a switch node in the flow graph.
See SwitchNode.
| Constructor and Description |
|---|
SwitchCase() |
| Modifier and Type | Method and Description |
|---|---|
abstract java.lang.Boolean |
getCondition(FacesContext context)
Return |
abstract java.lang.String |
getFromOutcome()
Return the outcome to be used if |
public abstract java.lang.String getFromOutcome()
Return the outcome to be used if getCondition(javax.faces.context.FacesContext)
return true.
public abstract java.lang.Boolean getCondition(FacesContext context)
Return true if this case should be
taken, false otherwise.
context - the FacesContext for the current request.