From: <epb...@us...> - 2006-02-12 11:38:12
|
Update of /cvsroot/hibernate/HibernateExt/metadata/src/test/org/hibernate/test/annotations/collectionelement In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29362/metadata/src/test/org/hibernate/test/annotations/collectionelement Modified Files: CountryAttitude.java Log Message: ANN-223 Index: CountryAttitude.java =================================================================== RCS file: /cvsroot/hibernate/HibernateExt/metadata/src/test/org/hibernate/test/annotations/collectionelement/CountryAttitude.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- CountryAttitude.java 5 Jan 2006 11:40:18 -0000 1.2 +++ CountryAttitude.java 12 Feb 2006 11:37:55 -0000 1.3 @@ -3,6 +3,7 @@ import javax.persistence.Embeddable; import javax.persistence.ManyToOne; +import javax.persistence.Column; import org.hibernate.test.annotations.Country; @@ -34,6 +35,7 @@ this.country = country; } + @Column(name="b_likes") public boolean isLikes() { return likes; } |