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

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/interfaceproxy/ItemImpl.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: ItemImpl.java 4407 2004-08-22 01:20:08Z oneovthafew $
 
2
package org.hibernate.test.interfaceproxy;
 
3
 
 
4
/**
 
5
 * @author Gavin King
 
6
 */
 
7
public abstract class ItemImpl implements Item {
 
8
        private Long id;
 
9
        private String name;
 
10
        /**
 
11
         * @return Returns the id.
 
12
         */
 
13
        public Long getId() {
 
14
                return id;
 
15
        }
 
16
        /**
 
17
         * @param id The id to set.
 
18
         */
 
19
        public void setId(Long id) {
 
20
                this.id = id;
 
21
        }
 
22
        /**
 
23
         * @return Returns the name.
 
24
         */
 
25
        public String getName() {
 
26
                return name;
 
27
        }
 
28
        /**
 
29
         * @param name The name to set.
 
30
         */
 
31
        public void setName(String name) {
 
32
                this.name = name;
 
33
        }
 
34
}