All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.faces.component.UICommand Maven / Gradle / Ivy

Go to download

This is the master POM file for Oracle's Implementation of the JSF 2.1 Specification.

There is a newer version: 2.1
Show newest version
/*
 * $Id: UICommand.java,v 1.77 2007/01/29 07:56:12 rlubke Exp $
 */

/*
 * The contents of this file are subject to the terms
 * of the Common Development and Distribution License
 * (the License). You may not use this file except in
 * compliance with the License.
 * 
 * You can obtain a copy of the License at
 * https://javaserverfaces.dev.java.net/CDDL.html or
 * legal/CDDLv1.0.txt. 
 * See the License for the specific language governing
 * permission and limitations under the License.
 * 
 * When distributing Covered Code, include this CDDL
 * Header Notice in each file and include the License file
 * at legal/CDDLv1.0.txt.    
 * If applicable, add the following below the CDDL Header,
 * with the fields enclosed by brackets [] replaced by
 * your own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 * 
 * [Name of File] [ver.__] [Date]
 * 
 * Copyright 2005 Sun Microsystems Inc. All Rights Reserved
 */

package javax.faces.component;

import javax.el.ELException;
import javax.el.MethodExpression;
import javax.el.ValueExpression;
import javax.faces.FacesException;
import javax.faces.application.Application;
import javax.faces.context.FacesContext;
import javax.faces.el.MethodBinding;
import javax.faces.event.AbortProcessingException;
import javax.faces.event.ActionEvent;
import javax.faces.event.ActionListener;
import javax.faces.event.FacesEvent;
import javax.faces.event.PhaseId;
import javax.faces.render.Renderer;


/**
 * 

UICommand is a {@link UIComponent} that represents * a user interface component which, when activated by the user, triggers * an application specific "command" or "action". Such a component is * typically rendered as a push button, a menu item, or a hyperlink.

* *

When the decode() method of this {@link UICommand}, or * its corresponding {@link Renderer}, detects that this control has been * activated, it will queue an {@link ActionEvent}. * Later on, the broadcast() method will ensure that this * event is broadcast to all interested listeners.

* *

Listeners will be invoked in the following order: *

    *
  1. {@link ActionListener}s, in the order in which they were registered. *
  2. The "actionListener" {@link MethodExpression} (which will cover * the "actionListener" that was set as a MethodBinding). *
  3. The default {@link ActionListener}, retrieved from the * {@link Application} - and therefore, any attached "action" * {@link MethodExpression}. *
*

*

By default, the rendererType property must be set to * "javax.faces.Button". This value can be changed by calling the * setRendererType() method.

*/ public class UICommand extends UIComponentBase implements ActionSource2 { // ------------------------------------------------------ Manifest Constants /** *

The standard component type for this component.

*/ public static final String COMPONENT_TYPE = "javax.faces.Command"; /** *

The standard component family for this component.

*/ public static final String COMPONENT_FAMILY = "javax.faces.Command"; // ------------------------------------------------------------ Constructors /** *

Create a new {@link UICommand} instance with default property * values.

*/ public UICommand() { super(); setRendererType("javax.faces.Button"); } // ------------------------------------------------------ Instance Variables private Object value = null; // -------------------------------------------------------------- Properties public String getFamily() { return (COMPONENT_FAMILY); } // ------------------------------------------------- ActionSource/ActionSource2 Properties /** * {@inheritDoc} * @deprecated This has been replaced by {@link #getActionExpression}. */ public MethodBinding getAction() { MethodBinding result = null; MethodExpression me; if (null != (me = getActionExpression())) { // if the MethodExpression is an instance of our private // wrapper class. if (me.getClass().equals(MethodExpressionMethodBindingAdapter.class)) { result = ((MethodExpressionMethodBindingAdapter)me).getWrapped(); } else { // otherwise, this is a real MethodExpression. Wrap it // in a MethodBinding. result = new MethodBindingMethodExpressionAdapter(me); } } return result; } /** * {@inheritDoc} * @deprecated This has been replaced by {@link #setActionExpression(javax.el.MethodExpression)}. */ public void setAction(MethodBinding action) { MethodExpressionMethodBindingAdapter adapter; if (null != action) { adapter = new MethodExpressionMethodBindingAdapter(action); setActionExpression(adapter); } else { setActionExpression(null); } } /** * {@inheritDoc} * @deprecated Use {@link #getActionListeners} instead. */ public MethodBinding getActionListener() { return this.methodBindingActionListener; } /** * {@inheritDoc} * @deprecated This has been replaced by {@link #addActionListener(javax.faces.event.ActionListener)}. */ public void setActionListener(MethodBinding actionListener) { this.methodBindingActionListener = actionListener; } /** *

The immediate flag.

*/ private boolean immediate = false; private boolean immediateSet = false; public boolean isImmediate() { if (this.immediateSet) { return (this.immediate); } ValueExpression ve = getValueExpression("immediate"); if (ve != null) { try { return (Boolean.TRUE.equals(ve.getValue(getFacesContext().getELContext()))); } catch (ELException e) { throw new FacesException(e); } } else { return (this.immediate); } } public void setImmediate(boolean immediate) { // if the immediate value is changing. if (immediate != this.immediate) { this.immediate = immediate; } this.immediateSet = true; } /** *

Returns the value property of the * UICommand. This is most often rendered as a label.

*/ public Object getValue() { if (this.value != null) { return (this.value); } ValueExpression ve = getValueExpression("value"); if (ve != null) { try { return (ve.getValue(getFacesContext().getELContext())); } catch (ELException e) { throw new FacesException(e); } } else { return (null); } } /** *

Sets the value property of the UICommand. * This is most often rendered as a label.

* * @param value the new value */ public void setValue(Object value) { this.value = value; } private MethodBinding methodBindingActionListener = null; // ---------------------------------------------------- ActionSource / ActionSource2 Methods /** *

The {@link MethodExpression} that, when invoked, yields the * literal outcome value.

*/ private MethodExpression actionExpression = null; public MethodExpression getActionExpression() { return actionExpression; } public void setActionExpression(MethodExpression actionExpression) { this.actionExpression = actionExpression; } /** * @throws NullPointerException {@inheritDoc} */ public void addActionListener(ActionListener listener) { addFacesListener(listener); } public ActionListener[] getActionListeners() { ActionListener al[] = (ActionListener []) getFacesListeners(ActionListener.class); return (al); } /** * @throws NullPointerException {@inheritDoc} */ public void removeActionListener(ActionListener listener) { removeFacesListener(listener); } // ----------------------------------------------------- StateHolder Methods private Object[] values; public Object saveState(FacesContext context) { if (values == null) { values = new Object[6]; } values[0] = super.saveState(context); values[1] = saveAttachedState(context, methodBindingActionListener); values[2] = saveAttachedState(context, actionExpression); values[3] = immediate ? Boolean.TRUE : Boolean.FALSE; values[4] = immediateSet ? Boolean.TRUE : Boolean.FALSE; values[5] = value; return (values); } public void restoreState(FacesContext context, Object state) { values = (Object[]) state; super.restoreState(context, values[0]); methodBindingActionListener = (MethodBinding) restoreAttachedState(context, values[1]); actionExpression = (MethodExpression) restoreAttachedState(context, values[2]); immediate = ((Boolean) values[3]).booleanValue(); immediateSet = ((Boolean) values[4]).booleanValue(); value = values[5]; } // ----------------------------------------------------- UIComponent Methods /** *

In addition to to the default {@link UIComponent#broadcast} * processing, pass the {@link ActionEvent} being broadcast to the * method referenced by actionListener (if any), * and to the default {@link ActionListener} registered on the * {@link javax.faces.application.Application}.

* * @param event {@link FacesEvent} to be broadcast * * @throws AbortProcessingException Signal the JavaServer Faces * implementation that no further processing on the current event * should be performed * @throws IllegalArgumentException if the implementation class * of this {@link FacesEvent} is not supported by this component * @throws NullPointerException if event is * null */ public void broadcast(FacesEvent event) throws AbortProcessingException { // Perform standard superclass processing (including calling our // ActionListeners) super.broadcast(event); if (event instanceof ActionEvent) { FacesContext context = getFacesContext(); // Notify the specified action listener method (if any) MethodBinding mb = getActionListener(); if (mb != null) { mb.invoke(context, new Object[] { event }); } // Invoke the default ActionListener ActionListener listener = context.getApplication().getActionListener(); if (listener != null) { listener.processAction((ActionEvent) event); } } } /** *

Intercept queueEvent and, for {@link ActionEvent}s, * mark the phaseId for the event to be * PhaseId.APPLY_REQUEST_VALUES if the * immediate flag is true, * PhaseId.INVOKE_APPLICATION otherwise.

*/ public void queueEvent(FacesEvent e) { if (e instanceof ActionEvent) { if (isImmediate()) { e.setPhaseId(PhaseId.APPLY_REQUEST_VALUES); } else { e.setPhaseId(PhaseId.INVOKE_APPLICATION); } } super.queueEvent(e); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy