1 package org.rcfaces.core.internal.taglib;
2
3 import org.rcfaces.core.internal.component.Properties;
4 import javax.faces.component.UIViewRoot;
5 import org.apache.commons.logging.Log;
6 import javax.servlet.jsp.tagext.Tag;
7 import org.apache.commons.logging.LogFactory;
8 import org.rcfaces.core.component.StyledTextComponent;
9 import org.rcfaces.core.internal.tools.ListenersTools1_2;
10 import org.rcfaces.core.internal.tools.ListenersTools;
11
12 public class StyledTextTag extends TextTag implements Tag {
13
14
15 private static final Log LOG=LogFactory.getLog(StyledTextTag.class);
16
17 public String getComponentType() {
18 return StyledTextComponent.COMPONENT_TYPE;
19 }
20
21 public void release() {
22
23 super.release();
24 }
25
26 }