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

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/proxy/Info.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.proxy;
 
2
 
 
3
/**
 
4
 * todo: describe Info
 
5
 *
 
6
 * @author Steve Ebersole
 
7
 */
 
8
public class Info {
 
9
        private Long id;
 
10
        private String details;
 
11
 
 
12
        public Info() {
 
13
        }
 
14
 
 
15
        public Info(String details) {
 
16
                this.details = details;
 
17
        }
 
18
 
 
19
        public Long getId() {
 
20
                return id;
 
21
        }
 
22
 
 
23
        public void setId(Long id) {
 
24
                this.id = id;
 
25
        }
 
26
 
 
27
        public String getDetails() {
 
28
                return details;
 
29
        }
 
30
 
 
31
        public void setDetails(String details) {
 
32
                this.details = details;
 
33
        }
 
34
}