KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > improve > struts > taglib > layout > field > DetailFieldTag


1 /*
2  * Created on 30 mars 2004
3  *
4  * Copyright Improve SA 2004.
5  * All rights reserved.
6  */

7 package fr.improve.struts.taglib.layout.field;
8
9 import javax.servlet.jsp.JspException JavaDoc;
10
11 /**
12  * @author jnribette
13  */

14 public class DetailFieldTag extends TextFieldTag {
15
16     public DetailFieldTag() {
17         setMode("R,R,R");
18     }
19     
20     protected Object JavaDoc getFieldValue() throws JspException JavaDoc {
21         // No initial value.
22
return "";
23     }
24     
25     public void release() {
26         setMode("R,R,R");
27     }
28 }
29
Popular Tags