Package org.richfaces.taglib

Source Code of org.richfaces.taglib.SimpleTogglePanelListenerTagHandler

/**
* License Agreement.
*
*  JBoss RichFaces - Ajax4jsf Component Library
*
* 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.richfaces.taglib;

import javax.faces.component.UIComponent;
import javax.faces.el.MethodBinding;

import org.ajax4jsf.webapp.taglib.AjaxComponentHandler;
import org.richfaces.event.SimpleToggleEvent;

import com.sun.facelets.FaceletContext;
import com.sun.facelets.tag.MetaRule;
import com.sun.facelets.tag.MetaRuleset;
import com.sun.facelets.tag.Metadata;
import com.sun.facelets.tag.MetadataTarget;
import com.sun.facelets.tag.TagAttribute;
import com.sun.facelets.tag.jsf.ComponentConfig;

public class SimpleTogglePanelListenerTagHandler extends AjaxComponentHandler {
  private final static String COLLAPSED_EXPANDED_LISTENER = "collapsedExpandedListener";
 
  public SimpleTogglePanelListenerTagHandler(ComponentConfig config) {
    super(config);
  }

  protected MetaRuleset createMetaRuleset(Class clazz) {
    MetaRuleset ruleset = super.createMetaRuleset(clazz);
   
    ruleset.addRule(new MetaRule() {

      public Metadata applyRule(String name, final TagAttribute attribute, MetadataTarget metadataTarget) {
        if (COLLAPSED_EXPANDED_LISTENER.equals(name)) {
          return new Metadata() {
            public void applyMetadata(FaceletContext context, Object object) {
              MethodBinding binding = context.getFacesContext().getApplication().createMethodBinding(attribute.getValue(), new Class[] {SimpleToggleEvent.class});
              ((UIComponent) object).getAttributes().put(COLLAPSED_EXPANDED_LISTENER, binding);
            }
          };
        }
        return null;
      }
    });
   
    return ruleset;
  }

}

TOP

Related Classes of org.richfaces.taglib.SimpleTogglePanelListenerTagHandler

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.