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

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/propertyref/inheritence/joined/Account.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: Account.java 10921 2006-12-05 14:39:12Z steve.ebersole@jboss.com $
 
2
package org.hibernate.test.propertyref.inheritence.joined;
 
3
 
 
4
import java.io.Serializable;
 
5
 
 
6
/**
 
7
 * @author Gavin King
 
8
 */
 
9
public class Account implements Serializable {
 
10
        private String accountId;
 
11
        private char type;
 
12
 
 
13
        /**
 
14
         * @return Returns the accountId.
 
15
         */
 
16
        public String getAccountId() {
 
17
                return accountId;
 
18
        }
 
19
        /**
 
20
         * @param accountId The accountId to set.
 
21
         */
 
22
        public void setAccountId(String accountId) {
 
23
                this.accountId = accountId;
 
24
        }
 
25
        /**
 
26
         * @return Returns the type.
 
27
         */
 
28
        public char getType() {
 
29
                return type;
 
30
        }
 
31
        /**
 
32
         * @param type The type to set.
 
33
         */
 
34
        public void setType(char type) {
 
35
                this.type = type;
 
36
        }
 
37
 
 
38
}