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 org.rcfaces.core.component.PasswordEntryComponent;
7 import javax.servlet.jsp.tagext.Tag;
8 import org.apache.commons.logging.LogFactory;
9 import org.rcfaces.core.internal.tools.ListenersTools1_2;
10 import org.rcfaces.core.internal.tools.ListenersTools;
11
12 public class PasswordEntryTag extends TextEntryTag implements Tag {
13
14
15 private static final Log LOG=LogFactory.getLog(PasswordEntryTag.class);
16
17 public String getComponentType() {
18 return PasswordEntryComponent.COMPONENT_TYPE;
19 }
20
21 public void release() {
22
23 super.release();
24 }
25
26 }