1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.portals.bridges.beans;
17
18 /***
19 *
20 * @author <a href="mailto:jford@apache.org">Jeremy Ford</a>
21 * @version $ID$
22 */
23 public class TabBean
24 {
25 private String id;
26
27 public TabBean()
28 {
29
30 }
31
32 public TabBean(String id)
33 {
34 this.id = id;
35 }
36
37 /***
38 * @return Returns the id.
39 */
40 public String getId()
41 {
42 return id;
43 }
44 /***
45 * @param id The id to set.
46 */
47 public void setId(String id)
48 {
49 this.id = id;
50 }
51
52 public boolean equals(Object obj)
53 {
54 boolean result = false;
55
56 if(obj instanceof TabBean)
57 {
58 TabBean tab = (TabBean)obj;
59 result = tab.id.equals(id);
60 }
61
62 return result;
63 }
64 }