View Javadoc

1   package org.rcfaces.core.internal.facelets;
2   
3   import org.rcfaces.core.internal.tools.ListenersTools;
4   import org.rcfaces.core.internal.tools.ListenersTools.IListenerType;
5   
6   import com.sun.facelets.tag.jsf.ComponentConfig;
7   
8   public class TextAreaHandler extends CameliaComponentHandler {
9   
10  	public TextAreaHandler(ComponentConfig config) {
11  		super(config);
12  	}
13  
14  	protected IListenerType getDefaultListenerType() {
15  		return ListenersTools.SELECTION_LISTENER_TYPE;
16  	}
17  
18  }