Java Doc for UICommand.java in  » J2EE » myfaces-core-1.2.0 » javax » faces » component » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » J2EE » myfaces core 1.2.0 » javax.faces.component 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.faces.component.UIComponent
      javax.faces.component.UIComponentBase
         javax.faces.component.UICommand

All known Subclasses:   javax.faces.component.html.HtmlCommandLink,  javax.faces.component.html.HtmlCommandButton,
UICommand
public class UICommand extends UIComponentBase implements ActionSource2(Code)

Events:

Type Phases Description
javax.faces.event.ActionEvent 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
final public static  StringCOMPONENT_FAMILY
    
final public static  StringCOMPONENT_TYPE
    

Constructor Summary
public  UICommand()
     Construct an instance of the UICommand.

Method Summary
public  voidaddActionListener(ActionListener listener)
     Adds a action listener.
public  voidbroadcast(FacesEvent event)
    
public  MethodBindinggetAction()
    
public  MethodExpressiongetActionExpression()
     Gets Specifies the action to take when this command is invoked. If the value is an expression, it is expected to be a method binding EL expression that identifies an action method.
public  MethodBindinggetActionListener()
     Gets A method binding EL expression that identifies an action listener method to be invoked if this component is activated by the user.
public  ActionListener[]getActionListeners()
     Returns an array of attached action listeners.
public  StringgetFamily()
    
public  ObjectgetValue()
     Gets The initial value of this component.
public  booleanisImmediate()
     Gets A boolean value that identifies the phase during which action events should fire.
public  voidqueueEvent(FacesEvent event)
    
public  voidremoveActionListener(ActionListener listener)
     Removes a action listener.
public  voidrestoreState(FacesContext facesContext, Object state)
    
public  ObjectsaveState(FacesContext facesContext)
    
public  voidsetAction(MethodBinding action)
    
public  voidsetActionExpression(MethodExpression actionExpression)
     Sets Specifies the action to take when this command is invoked. If the value is an expression, it is expected to be a method binding EL expression that identifies an action method.
public  voidsetActionListener(MethodBinding actionListener)
     Sets A method binding EL expression that identifies an action listener method to be invoked if this component is activated by the user.
public  voidsetImmediate(boolean immediate)
     Sets A boolean value that identifies the phase during which action events should fire.
public  voidsetValue(Object value)
     Sets The initial value of this component.

Field Detail
COMPONENT_FAMILY
final public static String COMPONENT_FAMILY(Code)



COMPONENT_TYPE
final public static String COMPONENT_TYPE(Code)




Constructor Detail
UICommand
public UICommand()(Code)
Construct an instance of the UICommand.




Method Detail
addActionListener
public void addActionListener(ActionListener listener)(Code)
Adds a action listener.
Parameters:
  listener - the action listener to add



broadcast
public void broadcast(FacesEvent event) throws AbortProcessingException(Code)



getAction
public MethodBinding getAction()(Code)



getActionExpression
public MethodExpression getActionExpression()(Code)
Gets Specifies the action to take when this command is invoked. If the value is an expression, it is expected to be a method binding EL expression that identifies an action method. An action method accepts no parameters and has a String return value, called the action outcome, that identifies the next view displayed. The phase that this event is fired in can be controlled via the immediate attribute. If the value is a string literal, it is treated as a navigation outcome for the current view. This is functionally equivalent to a reference to an action method that returns the string literal. the new actionExpression value



getActionListener
public MethodBinding getActionListener()(Code)
Gets A method binding EL expression that identifies an action listener method to be invoked if this component is activated by the user. An action listener method accepts a parameter of type javax.faces.event.ActionEvent and returns void. The phase that this event is fired in can be controlled via the immediate attribute. the new actionListener value



getActionListeners
public ActionListener[] getActionListeners()(Code)
Returns an array of attached action listeners. an array of attached action listeners.



getFamily
public String getFamily()(Code)



getValue
public Object getValue()(Code)
Gets The initial value of this component. the new value value



isImmediate
public boolean isImmediate()(Code)
Gets A boolean value that identifies the phase during which action events should fire. During normal event processing, action methods and action listener methods are fired during the "invoke application" phase of request processing. If this attribute is set to "true", these methods are fired instead at the end of the "apply request values" phase. the new immediate value



queueEvent
public void queueEvent(FacesEvent event)(Code)



removeActionListener
public void removeActionListener(ActionListener listener)(Code)
Removes a action listener.
Parameters:
  listener - the action listener to remove



restoreState
public void restoreState(FacesContext facesContext, Object state)(Code)



saveState
public Object saveState(FacesContext facesContext)(Code)



setAction
public void setAction(MethodBinding action)(Code)



setActionExpression
public void setActionExpression(MethodExpression actionExpression)(Code)
Sets Specifies the action to take when this command is invoked. If the value is an expression, it is expected to be a method binding EL expression that identifies an action method. An action method accepts no parameters and has a String return value, called the action outcome, that identifies the next view displayed. The phase that this event is fired in can be controlled via the immediate attribute. If the value is a string literal, it is treated as a navigation outcome for the current view. This is functionally equivalent to a reference to an action method that returns the string literal.
Parameters:
  actionExpression - the new actionExpression value



setActionListener
public void setActionListener(MethodBinding actionListener)(Code)
Sets A method binding EL expression that identifies an action listener method to be invoked if this component is activated by the user. An action listener method accepts a parameter of type javax.faces.event.ActionEvent and returns void. The phase that this event is fired in can be controlled via the immediate attribute.
Parameters:
  actionListener - the new actionListener value



setImmediate
public void setImmediate(boolean immediate)(Code)
Sets A boolean value that identifies the phase during which action events should fire. During normal event processing, action methods and action listener methods are fired during the "invoke application" phase of request processing. If this attribute is set to "true", these methods are fired instead at the end of the "apply request values" phase.
Parameters:
  immediate - the new immediate value



setValue
public void setValue(Object value)(Code)
Sets The initial value of this component.
Parameters:
  value - the new value value



Methods inherited from javax.faces.component.UIComponentBase
protected void addFacesListener(FacesListener listener)(Code)(Java Doc)
public void broadcast(FacesEvent event) throws AbortProcessingException(Code)(Java Doc)
public void decode(FacesContext context)(Code)(Java Doc)
public void encodeBegin(FacesContext context) throws IOException(Code)(Java Doc)
public void encodeChildren(FacesContext context) throws IOException(Code)(Java Doc)
public void encodeEnd(FacesContext context) throws IOException(Code)(Java Doc)
public UIComponent findComponent(String expr)(Code)(Java Doc)
public Map<String, Object> getAttributes()(Code)(Java Doc)
public int getChildCount()(Code)(Java Doc)
public List<UIComponent> getChildren()(Code)(Java Doc)
public String getClientId(FacesContext context)(Code)(Java Doc)
T getExpressionValue(String attribute, T explizitValue, T defaultValueIfExpressionNull)(Code)(Java Doc)
protected FacesContext getFacesContext()(Code)(Java Doc)
protected FacesListener[] getFacesListeners(Class clazz)(Code)(Java Doc)
public UIComponent getFacet(String name)(Code)(Java Doc)
public int getFacetCount()(Code)(Java Doc)
public Map<String, UIComponent> getFacets()(Code)(Java Doc)
public Iterator<UIComponent> getFacetsAndChildren()(Code)(Java Doc)
public String getId()(Code)(Java Doc)
public UIComponent getParent()(Code)(Java Doc)
protected Renderer getRenderer(FacesContext context)(Code)(Java Doc)
public String getRendererType()(Code)(Java Doc)
public boolean getRendersChildren()(Code)(Java Doc)
public ValueBinding getValueBinding(String name)(Code)(Java Doc)
public boolean invokeOnComponent(FacesContext context, String clientId, ContextCallback callback) throws FacesException(Code)(Java Doc)
public boolean isRendered()(Code)(Java Doc)
public boolean isTransient()(Code)(Java Doc)
public void processDecodes(FacesContext context)(Code)(Java Doc)
public void processRestoreState(FacesContext context, Object state)(Code)(Java Doc)
public Object processSaveState(FacesContext context)(Code)(Java Doc)
public void processUpdates(FacesContext context)(Code)(Java Doc)
public void processValidators(FacesContext context)(Code)(Java Doc)
public void queueEvent(FacesEvent event)(Code)(Java Doc)
protected void removeFacesListener(FacesListener listener)(Code)(Java Doc)
public static Object restoreAttachedState(FacesContext context, Object stateObj) throws IllegalStateException(Code)(Java Doc)
public void restoreState(FacesContext context, Object state)(Code)(Java Doc)
public static Object saveAttachedState(FacesContext context, Object attachedObject)(Code)(Java Doc)
public Object saveState(FacesContext context)(Code)(Java Doc)
public void setId(String id)(Code)(Java Doc)
public void setParent(UIComponent parent)(Code)(Java Doc)
public void setRendered(boolean rendered)(Code)(Java Doc)
public void setRendererType(String rendererType)(Code)(Java Doc)
public void setTransient(boolean transientFlag)(Code)(Java Doc)
public void setValueBinding(String name, ValueBinding binding)(Code)(Java Doc)

Fields inherited from javax.faces.component.UIComponent
protected Map<String, ValueExpression> bindings(Code)(Java Doc)

Methods inherited from javax.faces.component.UIComponent
abstract protected void addFacesListener(javax.faces.event.FacesListener listener)(Code)(Java Doc)
abstract public void broadcast(javax.faces.event.FacesEvent event) throws AbortProcessingException(Code)(Java Doc)
abstract public void decode(javax.faces.context.FacesContext context)(Code)(Java Doc)
public void encodeAll(javax.faces.context.FacesContext context) throws java.io.IOException(Code)(Java Doc)
abstract public void encodeBegin(javax.faces.context.FacesContext context) throws java.io.IOException(Code)(Java Doc)
abstract public void encodeChildren(javax.faces.context.FacesContext context) throws java.io.IOException(Code)(Java Doc)
abstract public void encodeEnd(javax.faces.context.FacesContext context) throws java.io.IOException(Code)(Java Doc)
abstract public javax.faces.component.UIComponent findComponent(java.lang.String expr)(Code)(Java Doc)
abstract public java.util.Map<String, Object> getAttributes()(Code)(Java Doc)
abstract public int getChildCount()(Code)(Java Doc)
abstract public java.util.List<UIComponent> getChildren()(Code)(Java Doc)
abstract public java.lang.String getClientId(javax.faces.context.FacesContext context)(Code)(Java Doc)
public String getContainerClientId(FacesContext ctx)(Code)(Java Doc)
abstract protected javax.faces.context.FacesContext getFacesContext()(Code)(Java Doc)
abstract protected javax.faces.event.FacesListener[] getFacesListeners(java.lang.Class clazz)(Code)(Java Doc)
abstract public javax.faces.component.UIComponent getFacet(java.lang.String name)(Code)(Java Doc)
public int getFacetCount()(Code)(Java Doc)
abstract public java.util.Map<String, UIComponent> getFacets()(Code)(Java Doc)
abstract public java.util.Iterator<UIComponent> getFacetsAndChildren()(Code)(Java Doc)
abstract public java.lang.String getFamily()(Code)(Java Doc)
abstract public java.lang.String getId()(Code)(Java Doc)
abstract public javax.faces.component.UIComponent getParent()(Code)(Java Doc)
abstract protected javax.faces.render.Renderer getRenderer(javax.faces.context.FacesContext context)(Code)(Java Doc)
abstract public java.lang.String getRendererType()(Code)(Java Doc)
abstract public boolean getRendersChildren()(Code)(Java Doc)
abstract public javax.faces.el.ValueBinding getValueBinding(java.lang.String name)(Code)(Java Doc)
public ValueExpression getValueExpression(String name)(Code)(Java Doc)
public boolean invokeOnComponent(javax.faces.context.FacesContext context, String clientId, javax.faces.component.ContextCallback callback) throws javax.faces.FacesException(Code)(Java Doc)
abstract public boolean isRendered()(Code)(Java Doc)
abstract public void processDecodes(javax.faces.context.FacesContext context)(Code)(Java Doc)
abstract public void processRestoreState(javax.faces.context.FacesContext context, java.lang.Object state)(Code)(Java Doc)
abstract public java.lang.Object processSaveState(javax.faces.context.FacesContext context)(Code)(Java Doc)
abstract public void processUpdates(javax.faces.context.FacesContext context)(Code)(Java Doc)
abstract public void processValidators(javax.faces.context.FacesContext context)(Code)(Java Doc)
abstract public void queueEvent(javax.faces.event.FacesEvent event)(Code)(Java Doc)
abstract protected void removeFacesListener(javax.faces.event.FacesListener listener)(Code)(Java Doc)
abstract public void setId(java.lang.String id)(Code)(Java Doc)
abstract public void setParent(javax.faces.component.UIComponent parent)(Code)(Java Doc)
abstract public void setRendered(boolean rendered)(Code)(Java Doc)
abstract public void setRendererType(java.lang.String rendererType)(Code)(Java Doc)
abstract public void setValueBinding(java.lang.String name, javax.faces.el.ValueBinding binding)(Code)(Java Doc)
public void setValueExpression(String name, ValueExpression expression)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.