Source code: com/aendvari/tethys/tag/html/TextTag.java
1 /*
2 * TextTag.java
3 *
4 * Copyright (c) 2001, 2002 Aendvari, Ltd. All Rights Reserved.
5 *
6 * See the file LICENSE for terms of use.
7 *
8 */
9
10 package com.aendvari.tethys.tag.html;
11
12 import java.io.IOException;
13
14 import javax.servlet.http.*;
15 import javax.servlet.jsp.*;
16 import javax.servlet.jsp.tagext.*;
17
18 import com.aendvari.common.model.*;
19
20 import com.aendvari.tethys.tag.*;
21 import com.aendvari.tethys.context.*;
22
23
24 /**
25 * The HTML <code>text</code> tag.
26 *
27 * @author Scott Milne
28 *
29 */
30
31 public class TextTag extends AbstractFieldTag
32 {
33 public TextTag()
34 {
35 super();
36 type = "text";
37 }
38 }
39