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   import com.sun.facelets.FaceletContext;
8   import javax.faces.component.UIComponent;
9   
10  public class TextHandler extends CameliaComponentHandler {
11  
12  	public TextHandler(ComponentConfig config) {
13  		super(config);
14  	}
15  
16  	protected void onComponentCreated(FaceletContext ctx, UIComponent c, UIComponent parent) {
17  		setTextBody(ctx, c);
18  	}
19  
20  	protected void applyNextHandler(FaceletContext ctx, UIComponent c) {
21  	}
22  
23  }