blob: b7587bbd6c48d7cee54c864617fba06dc5bbe7a9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.faces.taglib;
import org.apache.cocoon.taglib.TagSupport;
import org.apache.cocoon.faces.FacesUtils;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import javax.faces.component.ActionSource;
import javax.faces.component.UIComponent;
import javax.faces.event.ActionListener;
/**
* @version CVS $Id$
*/
public class ActionListenerTag extends TagSupport {
private String type;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public int doStartTag(String namespaceURI, String localName, String qName, Attributes atts)
throws SAXException {
UIComponentTag tag = FacesUtils.findParentUIComponentTag(this);
if (tag == null) {
throw new SAXException("Tag <" + getClass().getName() + "> have to be nested within a UIComponentTag");
}
if (!tag.getCreated()) {
return 0;
}
UIComponent component = tag.getComponentInstance();
if (component == null) {
throw new SAXException("Parent tag <" + tag.getClass().getName() + "> has no component instance");
}
if (component instanceof ActionSource) {
String clazz = (String) tag.createValueBinding(this.type).getValue(tag.getFacesContext());
ActionListener handler = null;
try {
handler = (ActionListener) Class.forName(clazz).newInstance();
} catch (Exception e) {
throw new SAXException("Tag <" + tag.getClass().getName() + "> could not create action listener <" + clazz + ">", e);
}
((ActionSource)component).addActionListener(handler);
}
return SKIP_BODY;
}
public void recycle() {
super.recycle();
this.type = null;
}
}