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

com.sun.faces.taglib.jsf_core.ActionListenerTag Maven / Gradle / Ivy

Go to download

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

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package com.sun.faces.taglib.jsf_core;

import javax.el.ValueExpression;
import javax.faces.component.ActionSource;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.event.ActionListener;
import javax.faces.event.ActionEvent;
import javax.faces.event.AbortProcessingException;
import javax.faces.webapp.UIComponentClassicTagBase;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;

import java.util.logging.Level;
import java.util.logging.Logger;
import java.io.Serializable;

import com.sun.faces.util.MessageUtils;
import com.sun.faces.util.Util;
import com.sun.faces.util.FacesLogger;


/**
 * 

Tag implementation that creates a {@link ActionListener} instance * and registers it on the {@link UIComponent} associated with our most * immediate surrounding instance of a tag whose implementation class * is a subclass of {@link UIComponentClassicTagBase}. This tag creates no output to * the page currently being created.

*

*

This class may be used directly to implement a generic event handler * registration tag (based on the fully qualified Java class name specified * by the type attribute), or as a base class for tag instances * that support specific {@link ActionListener} subclasses.

*

*

Subclasses of this class must implement the * createActionListener() method, which creates and returns a * {@link ActionListener} instance. Any configuration properties that * are required by this {@link ActionListener} instance must have been * set by the createActionListener() method. Generally, * this occurs by copying corresponding attribute values on the tag * instance.

*

*

This tag creates no output to the page currently being created. It * is used solely for the side effect of {@link ActionListener} * creation.

*/ public class ActionListenerTag extends TagSupport { // ------------------------------------------------------------- Attributes private static final long serialVersionUID = -5222351612904952740L; private static final Logger logger = FacesLogger.TAGLIB.getLogger(); /** *

The fully qualified class name of the {@link ActionListener} * instance to be created.

*/ private ValueExpression type = null; /** *

The value expression used to create a listener instance and it is * also used to wire up this listener to an {@link ActionListener} property * of a JavaBean class.

*/ private ValueExpression binding = null; /** *

Set the fully qualified class name of the * {@link ActionListener} instance to be created. * * @param type The new class name */ public void setType(ValueExpression type) { this.type = type; } /* *

Set the value binding expression for this listener.

* * @param binding The new value binding expression */ public void setBinding(ValueExpression binding) { this.binding = binding; } // --------------------------------------------------------- Public Methods /** *

Create a new instance of the specified {@link ActionListener} * class, and register it with the {@link UIComponent} instance associated * with our most immediately surrounding {@link UIComponentClassicTagBase} * instance, if the {@link UIComponent} instance was created by this * execution of the containing JSP page.

* * @throws JspException if a JSP error occurs */ public int doStartTag() throws JspException { // Locate our parent UIComponentTag UIComponentClassicTagBase tag = UIComponentClassicTagBase.getParentUIComponentClassicTagBase(pageContext); if (tag == null) { Object params[] = {this.getClass().getName()}; throw new JspException( MessageUtils.getExceptionMessageString( MessageUtils.NOT_NESTED_IN_FACES_TAG_ERROR_MESSAGE_ID, params)); } // Nothing to do unless this tag created a component if (!tag.getCreated()) { return (SKIP_BODY); } UIComponent component = tag.getComponentInstance(); if (component == null) { throw new JspException( MessageUtils.getExceptionMessageString(MessageUtils.NULL_COMPONENT_ERROR_MESSAGE_ID)); } if (!(component instanceof ActionSource)) { throw new JspException( MessageUtils.getExceptionMessageString( MessageUtils.NOT_NESTED_IN_TYPE_TAG_ERROR_MESSAGE_ID, "actionListener", "javax.faces.component.ActionSource")); } // If binding is null, type is set and is a literal value, // then don't bother wrapping. Just instantiate and // set. ActionListener listener; if (binding == null && type != null && type.isLiteralText()) { try { listener = (ActionListener) Util.getListenerInstance(type, null); } catch (Exception e) { throw new JspException(e.getMessage(), e.getCause()); } } else { listener = new BindingActionListener(type, binding); } ((ActionSource) component).addActionListener(listener); return (SKIP_BODY); } /** *

Release references to any acquired resources. */ public void release() { this.type = null; } // ----------------------------------------------------------- Inner Classes private static class BindingActionListener implements ActionListener, Serializable { private ValueExpression type; private ValueExpression binding; // -------------------------------------------------------- Constructors public BindingActionListener(ValueExpression type, ValueExpression binding) { this.type = type; this.binding = binding; } // ----------------------------------------- Methods from ActionListener /** * PENDING * * @param event The {@link javax.faces.event.ActionEvent} that has occurred * @throws javax.faces.event.AbortProcessingException * Signal the JavaServer Faces * implementation that no further processing on the current event * should be performed */ public void processAction(ActionEvent event) throws AbortProcessingException { ActionListener instance = (ActionListener) Util.getListenerInstance(type, binding); if (instance != null) { instance.processAction(event); } else { if (logger.isLoggable(Level.WARNING)) { logger.log(Level.WARNING, "jsf.core.taglib.action_or_valuechange_listener.null_type_binding", new Object[] { "ActionListener", event.getComponent().getClientId(FacesContext.getCurrentInstance())}); } } } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy