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

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/legacy/Z.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
package org.hibernate.test.legacy;
 
2
 
 
3
public class Z {
 
4
 
 
5
        private long id;
 
6
        private W w;
 
7
 
 
8
        /**
 
9
         * 
 
10
         */
 
11
        public Z() {
 
12
        }
 
13
 
 
14
 
 
15
        /**
 
16
         * @return
 
17
         */
 
18
        public long getId() {
 
19
                return id;
 
20
        }
 
21
 
 
22
        /**
 
23
         * @return
 
24
         */
 
25
        public W getW() {
 
26
                return w;
 
27
        }
 
28
 
 
29
        /**
 
30
         * @param l
 
31
         */
 
32
        public void setId(long l) {
 
33
                id = l;
 
34
        }
 
35
 
 
36
        /**
 
37
         * @param w
 
38
         */
 
39
        public void setW(W w) {
 
40
                this.w = w;
 
41
        }
 
42
 
 
43
}