Index: src/java/javax/jdo/annotations/Element.java =================================================================== --- src/java/javax/jdo/annotations/Element.java (revision 562617) +++ src/java/javax/jdo/annotations/Element.java (working copy) @@ -134,8 +134,8 @@ */ String generateForeignKey() default ""; - /** Name for a generated primary key constraint. - * @return the name of the generated primary key constraint + /** Name for a generated foreign key constraint. + * @return the name of the generated foreign key constraint */ String foreignKey() default ""; Index: src/java/javax/jdo/annotations/Join.java =================================================================== --- src/java/javax/jdo/annotations/Join.java (revision 562617) +++ src/java/javax/jdo/annotations/Join.java (working copy) @@ -96,8 +96,8 @@ */ String generateForeignKey() default ""; - /** Name for a generated primary key constraint. - * @return the name of the generated primary key constraint + /** Name for a generated foreign key constraint. + * @return the name of the generated foreign key constraint */ String foreignKey() default ""; Index: src/java/javax/jdo/annotations/Key.java =================================================================== --- src/java/javax/jdo/annotations/Key.java (revision 562617) +++ src/java/javax/jdo/annotations/Key.java (working copy) @@ -131,8 +131,8 @@ */ String generateForeignKey() default ""; - /** Name for a generated primary key constraint. - * @return the name of the generated primary key constraint + /** Name for a generated foreign key constraint. + * @return the name of the generated foreign key constraint */ String foreignKey() default "";