~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/unionsubclass/Thing.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: Thing.java 4418 2004-08-22 13:38:16Z oneovthafew $
2
 
package org.hibernate.test.unionsubclass;
3
 
 
4
 
/**
5
 
 * @author Gavin King
6
 
 */
7
 
public class Thing {
8
 
        private long id;
9
 
        private String description;
10
 
        private Being owner;
11
 
        /**
12
 
         * @return Returns the description.
13
 
         */
14
 
        public String getDescription() {
15
 
                return description;
16
 
        }
17
 
        /**
18
 
         * @param description The description to set.
19
 
         */
20
 
        public void setDescription(String description) {
21
 
                this.description = description;
22
 
        }
23
 
        /**
24
 
         * @return Returns the id.
25
 
         */
26
 
        public long getId() {
27
 
                return id;
28
 
        }
29
 
        /**
30
 
         * @param id The id to set.
31
 
         */
32
 
        public void setId(long id) {
33
 
                this.id = id;
34
 
        }
35
 
        /**
36
 
         * @return Returns the owner.
37
 
         */
38
 
        public Being getOwner() {
39
 
                return owner;
40
 
        }
41
 
        /**
42
 
         * @param owner The owner to set.
43
 
         */
44
 
        public void setOwner(Being owner) {
45
 
                this.owner = owner;
46
 
        }
47
 
}