~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/join/Customer.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//$Id: Customer.java 4364 2004-08-17 12:10:32Z oneovthafew $
 
2
package org.hibernate.test.join;
 
3
 
 
4
/**
 
5
 * @author Gavin King
 
6
 */
 
7
public class Customer extends Person {
 
8
        private Employee salesperson;
 
9
        private String comments;
 
10
 
 
11
        /**
 
12
         * @return Returns the salesperson.
 
13
         */
 
14
        public Employee getSalesperson() {
 
15
                return salesperson;
 
16
        }
 
17
        /**
 
18
         * @param salesperson The salesperson to set.
 
19
         */
 
20
        public void setSalesperson(Employee salesperson) {
 
21
                this.salesperson = salesperson;
 
22
        }
 
23
        /**
 
24
         * @return Returns the comments.
 
25
         */
 
26
        public String getComments() {
 
27
                return comments;
 
28
        }
 
29
        /**
 
30
         * @param comments The comments to set.
 
31
         */
 
32
        public void setComments(String comments) {
 
33
                this.comments = comments;
 
34
        }
 
35
}