View Javadoc

1   /*
2    * Copyright 2004 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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  }