/Users/lyon/j4p/src/gui/dialogs/StudentData.java

1    package gui.dialogs; 
2     
3    /** 
4     * DocJava, Inc. 
5     * http://www.docjava.com 
6     * Programmer: dlyon 
7     * Date: Sep 22, 2004 
8     * Time: 9:09:20 PM 
9     */ 
10   public class StudentData { 
11       private String name = null; 
12       private String grade = null; 
13       private String address = null; 
14       private String shoeSize = null; 
15       private String room = null; 
16       private String iq = null; 
17    
18       public String getName() { 
19           return name; 
20       } 
21    
22       public void setName(String name) { 
23           this.name = name; 
24       } 
25    
26       public String getGrade() { 
27           return grade; 
28       } 
29    
30       public void setGrade(String grade) { 
31           this.grade = grade; 
32       } 
33    
34       public String getAddress() { 
35           return address; 
36       } 
37    
38       public void setAddress(String address) { 
39           this.address = address; 
40       } 
41    
42       public String getShoeSize() { 
43           return shoeSize; 
44       } 
45    
46       public void setShoeSize(String shoeSize) { 
47           this.shoeSize = shoeSize; 
48       } 
49    
50       public String getRoom() { 
51           return room; 
52       } 
53    
54       public void setRoom(String room) { 
55           this.room = room; 
56       } 
57    
58       public String getIq() { 
59           return iq; 
60       } 
61    
62       public void setIq(String iq) { 
63           this.iq = iq; 
64       } 
65   } 
66