[hibernate-issues] [Hibernate-JIRA] Created: (HCANN-15) Documentation @JoinTable error in section 2.4.6.2.5

david durham (JIRA) noreply at atlassian.com
Wed Jan 20 15:35:29 EST 2010


Documentation @JoinTable error in section 2.4.6.2.5
---------------------------------------------------

                 Key: HCANN-15
                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HCANN-15
             Project: Hibernate Commons Annotations
          Issue Type: Bug
            Reporter: david durham
            Priority: Minor


The documentation has the following example:

    ...
    @JoinTable(
            table=@Table(name="BoyFavoriteNumbers"),
            joinColumns = @JoinColumn(name="BoyId")
    )
    ..

believe it should be:

    ...
    @JoinTable(
            name="BoyFavoriteNumbers",
            joinColumns = @JoinColumn(name="BoyId")
    )
    ..




-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list