From: Max R. A. <max...@jb...> - 2006-11-30 10:37:53
|
I don't recall, but is our own javax.persistence src copy still relevant= ? Just thinking if it has any value to fix stuff like the ones below ? = (shuffled javadoc) /max ------- Forwarded message ------- From: hib...@li... To: hib...@li... Cc: Subject: [hibernate-commits] Hibernate SVN: r10885 - = branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence Date: Thu, 30 Nov 2006 11:03:50 +0100 Author: max...@jb... Date: 2006-11-30 05:03:47 -0500 (Thu, 30 Nov 2006) New Revision: 10885 Modified: branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/Attri= buteOverride.java Log: javadoc shuffled for name/column Modified: = branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/Attribute= Override.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- = branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/Attribute= Override.java 2006-11-30 = 08:05:05 UTC (rev 10884) +++ branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/Attri= buteOverride.java 2006-11-30 = 10:03:47 UTC (rev 10885) @@ -23,12 +23,12 @@ @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) public @interface AttributeOverride { /** - * The column that is being mapped to the persistent attribute + * The name of the property whose mapping is being overridden if = property-based access is being + * used, or the name of the field if field-based access is used. */ String name(); /** - * The name of the property whose mapping is being overridden if = property-based access is being - * used, or the name of the field if field-based access is used. + * The column that is being mapped to the persistent attribute */ Column column(); } _______________________________________________ hibernate-commits mailing list hib...@li... https://lists.jboss.org/mailman/listinfo/hibernate-commits -- = -- Max Rydahl Andersen callto://max.rydahl.andersen Hibernate ma...@hi... http://hibernate.org JBoss a division of Red Hat max...@jb... |
From: Emmanuel B. <emm...@hi...> - 2006-11-30 15:25:44
|
Yes it is relevant. Thanks for the fix. Max Rydahl Andersen wrote: > > I don't recall, but is our own javax.persistence src copy still relevant ? > > Just thinking if it has any value to fix stuff like the ones below ? > (shuffled javadoc) > > /max > > ------- Forwarded message ------- > From: hib...@li... > To: hib...@li... > Cc: > Subject: [hibernate-commits] Hibernate SVN: r10885 - > branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence > Date: Thu, 30 Nov 2006 11:03:50 +0100 > > Author: max...@jb... > Date: 2006-11-30 05:03:47 -0500 (Thu, 30 Nov 2006) > New Revision: 10885 > > Modified: > > branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/AttributeOverride.java > Log: > javadoc shuffled for name/column > > Modified: > branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/AttributeOverride.java > =================================================================== > --- > branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/AttributeOverride.java > 2006-11-30 > 08:05:05 UTC (rev 10884) > +++ > branches/Branch_3_2/HibernateExt/ejb-api/src/javax/persistence/AttributeOverride.java > 2006-11-30 > 10:03:47 UTC (rev 10885) > @@ -23,12 +23,12 @@ > @Target({TYPE, METHOD, FIELD}) @Retention(RUNTIME) > public @interface AttributeOverride { > /** > - * The column that is being mapped to the persistent attribute > + * The name of the property whose mapping is being overridden if > property-based access is being > + * used, or the name of the field if field-based access is used. > */ > String name(); > /** > - * The name of the property whose mapping is being overridden if > property-based access is being > - * used, or the name of the field if field-based access is used. > + * The column that is being mapped to the persistent attribute > */ > Column column(); > } > > _______________________________________________ > hibernate-commits mailing list > hib...@li... > https://lists.jboss.org/mailman/listinfo/hibernate-commits > > > > -- > -- > Max Rydahl Andersen > callto://max.rydahl.andersen > > Hibernate > ma...@hi... > http://hibernate.org > > JBoss a division of Red Hat > max...@jb... > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to > share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > <http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV> > _______________________________________________ > hibernate-devel mailing list > hib...@li... > https://lists.sourceforge.net/lists/listinfo/hibernate-devel > |