GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / test / persistence / org / codehaus / groovy / grails / orm / hibernate / HibernateMappedClass.java
blob3b83896dd7a46ecd510e085831041d5044947ffa
1 package org.codehaus.groovy.grails.orm.hibernate;
2 public class HibernateMappedClass {
4 private Integer id;
5 private String myProp;
7 public void setId(Integer id) {
8 this.id = id;
11 public Integer getId() {
12 return this.id;
15 public void setMyProp(String myProp) {
16 this.myProp = myProp;
19 public String getMyProp() {
20 return this.myProp;