1 /***
2 Copyright (C) 2005 The Java Community
3
4 This program is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free Software
6 Foundation; either version 2 of the License, or (at your option) any later
7 version.
8
9 This program is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License along with
14 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 Place, Suite 330, Boston, MA 02111-1307 USA.
16
17 */
18 package org.bejug.javacareers.jobs.model;
19
20 /***
21 *
22 * @author Sven Schauwvliege (Last modified by $Author: shally $)
23 * @version $Revision: 1.4 $ - $Date: 2005/12/20 15:36:45 $
24 */
25 public class QAndA extends AbstractPersistableObject{
26 /***
27 * The question String.
28 */
29 private String question;
30
31 /***
32 * The answer String.
33 */
34 private String answer;
35
36 /***
37 * The queuePoint String.
38 */
39 private String queuePoint;
40
41 /***
42 * @return Returns the answer.
43 */
44 public String getAnswer() {
45 return answer;
46 }
47
48 /***
49 * @param answer The answer to set.
50 */
51 public void setAnswer(String answer) {
52 this.answer = answer;
53 }
54
55 /***
56 * @return Returns the question.
57 */
58 public String getQuestion() {
59 return question;
60 }
61
62 /***
63 * @param question The question to set.
64 */
65 public void setQuestion(String question) {
66 this.question = question;
67 }
68
69 /***
70 * @return Returns the queuePoint.
71 */
72 public String getQueuePoint() {
73 return queuePoint;
74 }
75
76 /***
77 * @param url is the queuePoint to set.
78 */
79 public void setQueuePoint(String url) {
80 this.queuePoint = url;
81 }
82 }
83 /***
84 * $Log: QAndA.java,v $
85 * Revision 1.4 2005/12/20 15:36:45 shally
86 * CheckStyle and PMD changes.
87 *
88 * Revision 1.3 2005/10/11 07:27:18 stephan_janssen
89 * Cleanup
90 *
91 * Revision 1.2 2005/09/12 14:12:38 schauwvliege
92 * added queue fields
93 *
94 * Revision 1.1 2005/09/06 13:21:07 schauwvliege
95 * Intro if interview
96 *
97 **/