Author: max.andersen(a)jboss.com
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();
}
Show replies by date