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

« back to all changes in this revision

Viewing changes to test/org/hibernate/test/jpa/MySubclassEntity.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.jpa;
 
2
 
 
3
/**
 
4
 * {@inheritDoc}
 
5
 *
 
6
 * @author Steve Ebersole
 
7
 */
 
8
public class MySubclassEntity extends MyEntity {
 
9
        private String someSubProperty;
 
10
 
 
11
        public String getSomeSubProperty() {
 
12
                return someSubProperty;
 
13
        }
 
14
 
 
15
        public void setSomeSubProperty(String someSubProperty) {
 
16
                this.someSubProperty = someSubProperty;
 
17
        }
 
18
}