KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nextime > ion > admin > form > SectionForm


1 package org.nextime.ion.admin.form;
2
3 import org.apache.struts.action.*;
4 import java.util.*;
5
6 public class SectionForm extends ActionForm {
7     
8     private String JavaDoc _id;
9     private String JavaDoc _parent;
10     
11     public String JavaDoc getId() {
12         return _id;
13     }
14     
15     public String JavaDoc getParent() {
16         return _parent;
17     }
18     
19     public void setId( String JavaDoc value ) {
20         _id = value.trim();
21     }
22     
23     public void setParent( String JavaDoc value ) {
24         _parent = value;
25     }
26     
27     
28     public void reset() {
29         _id = null;
30         _parent = null;
31     }
32
33 }
34
35
Popular Tags