KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > albel > tags > table > model > ColumnHeader


1 /*
2  * ColumnHeader.java
3  *
4  * Created on Šeštadienis, 2004, Spalio 9, 17.33
5  */

6
7 package albel.tags.table.model;
8
9 /**
10  *
11  * @author Albertas Laurinav
12  */

13 public class ColumnHeader
14 {
15     
16     /**
17      * Holds value of property title.
18      */

19     private String JavaDoc title;
20     
21     /**
22      * Holds value of property align.
23      */

24     private String JavaDoc align;
25     
26     /**
27      * Holds value of property cssClass.
28      */

29     private String JavaDoc cssClass;
30     
31     /**
32      * Holds value of property column.
33      */

34     private Column column;
35     
36     /** Creates a new instance of ColumnHeader */
37     public ColumnHeader()
38     {
39     }
40     
41     /**
42      * Getter for property title.
43      * @return Value of property title.
44      */

45     public String JavaDoc getTitle()
46     {
47         return this.title;
48     }
49     
50     /**
51      * Setter for property title.
52      * @param title New value of property title.
53      */

54     public void setTitle(String JavaDoc title)
55     {
56         this.title = title;
57     }
58     
59     /**
60      * Getter for property align.
61      * @return Value of property align.
62      */

63     public String JavaDoc getAlign()
64     {
65         return this.align;
66     }
67     
68     /**
69      * Setter for property align.
70      * @param align New value of property align.
71      */

72     public void setAlign(String JavaDoc align)
73     {
74         this.align = align;
75     }
76     
77     /**
78      * Getter for property cssClass.
79      * @return Value of property cssClass.
80      */

81     public String JavaDoc getCssClass()
82     {
83         return this.cssClass;
84     }
85     
86     /**
87      * Setter for property cssClass.
88      * @param cssClass New value of property cssClass.
89      */

90     public void setCssClass(String JavaDoc cssClass)
91     {
92         this.cssClass = cssClass;
93     }
94     
95     /**
96      * Getter for property column.
97      * @return Value of property column.
98      */

99     public Column getColumn()
100     {
101         return this.column;
102     }
103     
104     /**
105      * Setter for property column.
106      * @param column New value of property column.
107      */

108     public void setColumn(Column column)
109     {
110         this.column = column;
111     }
112     
113 }
114
Popular Tags