KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > beehive > netui > tags > rendering > AbstractHtmlControlState


1 package org.apache.beehive.netui.tags.rendering;
2
3 /**
4  * This class adds the name attribute to the base HTML state. The name attribute
5  * is used by the HTML Controls as the control name. For all successful controls
6  * durinig a form post the name and value are posted back.
7  */

8 abstract public class AbstractHtmlControlState extends AbstractHtmlState
9 {
10     public String JavaDoc name;
11
12     /**
13      * Initialize the state values.
14      */

15     public void clear()
16     {
17         super.clear();
18         name = null;
19     }
20 }
21
Popular Tags