~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/joined/Person.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//$Id: Person.java 7274 2005-06-22 17:07:29Z oneovthafew $
2
 
package org.hibernate.test.propertyref.inheritence.joined;
3
 
 
4
 
 
5
 
/**
6
 
 * @author gavin
7
 
 */
8
 
public class Person {
9
 
        private Long id;
10
 
        private String name;
11
 
        private BankAccount bankAccount;
12
 
 
13
 
        /**
14
 
         * @return Returns the id.
15
 
         */
16
 
        public Long getId() {
17
 
                return id;
18
 
        }
19
 
        /**
20
 
         * @param id The id to set.
21
 
         */
22
 
        public void setId(Long id) {
23
 
                this.id = id;
24
 
        }
25
 
        /**
26
 
         * @return Returns the name.
27
 
         */
28
 
        public String getName() {
29
 
                return name;
30
 
        }
31
 
        /**
32
 
         * @param name The name to set.
33
 
         */
34
 
        public void setName(String name) {
35
 
                this.name = name;
36
 
        }
37
 
 
38
 
        public BankAccount getBankAccount() {
39
 
                return bankAccount;
40
 
        }
41
 
        public void setBankAccount(BankAccount bankAccount) {
42
 
                this.bankAccount = bankAccount;
43
 
        }
44
 
}