Package org.ajax4jsf.webapp.taglib

Source Code of org.ajax4jsf.webapp.taglib.AjaxComponentHandler

/**
* License Agreement.
*
* Rich Faces - Natural Ajax for Java Server Faces (JSF)
*
* Copyright (C) 2007 Exadel, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
*/

package org.ajax4jsf.webapp.taglib;

import javax.faces.component.ActionSource;

import com.sun.facelets.tag.MetaRuleset;
import com.sun.facelets.tag.jsf.ComponentConfig;
import com.sun.facelets.tag.jsf.ComponentHandler;

/**
* @author shura (latest modification by $Author: alexsmirnov $)
* @version $Revision: 1.1.2.1 $ $Date: 2007/02/01 15:31:23 $
*
*/
public class AjaxComponentHandler extends ComponentHandler {

  /**
   * @param config
   */
  public AjaxComponentHandler(ComponentConfig config) {
    super(config);
    // TODO Auto-generated constructor stub
  }

  /* (non-Javadoc)
   * @see com.sun.facelets.tag.jsf.ComponentHandler#createMetaRuleset(java.lang.Class)
   */
  protected MetaRuleset createMetaRuleset(Class type) {
    // TODO Auto-generated method stub
    MetaRuleset metaRules = super.createMetaRuleset(type);
    if (ActionSource.class.isAssignableFrom(type)) {
      metaRules.addRule(AjaxActionsRule.instance);
    }
    metaRules.addRule(AjaxReRendrRule.instance);
    return metaRules;
  }

}
TOP

Related Classes of org.ajax4jsf.webapp.taglib.AjaxComponentHandler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.