KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > betwixt > BookBean


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  
17 package org.apache.commons.betwixt;
18
19 /**
20  * @author <a HREF='http://jakarta.apache.org/'>Jakarta Commons Team</a>
21  * @version $Revision: 1.2 $
22  */

23 public class BookBean {
24     
25     private String JavaDoc author;
26     private String JavaDoc title;
27     private String JavaDoc publisher;
28     
29     public BookBean() {}
30     
31     public BookBean(String JavaDoc author, String JavaDoc title, String JavaDoc publisher) {
32         setAuthor(author);
33         setTitle(title);
34         setPublisher(publisher);
35     }
36     
37     public String JavaDoc getAuthor() {
38         return author;
39     }
40
41     public String JavaDoc getPublisher() {
42         return publisher;
43     }
44
45     public String JavaDoc getTitle() {
46         return title;
47     }
48
49
50     public void setAuthor(String JavaDoc string) {
51         author = string;
52     }
53
54     public void setPublisher(String JavaDoc string) {
55         publisher = string;
56     }
57
58     public void setTitle(String JavaDoc string) {
59         title = string;
60     }
61
62     public boolean equals(Object JavaDoc obj) {
63         boolean result = false;
64         if (obj instanceof BookBean) {
65             BookBean book = (BookBean) obj;
66             result = author.equals(book.author) &&
67                     publisher.equals(book.publisher) &&
68                     title.equals(book.title);
69         }
70         return result;
71     }
72     
73     public String JavaDoc toString() {
74         return "[BookBean title=" + title + "]";
75     }
76     
77 }
78
Popular Tags