The following issue has been updated:

    Updater: Tobin Paterson (mailto:[EMAIL PROTECTED])
       Date: Sat, 1 Mar 2003 7:52 PM
    Changes:
[Attachment] [patch.txt] was added

---------------------------------------------------------------------
For a full history of the issue, see:

  
http://opensource.atlassian.com/projects/xdoclet/secure/ViewIssue.jspa?key=XDT-343&page=history

---------------------------------------------------------------------
View the issue:

  http://opensource.atlassian.com/projects/xdoclet/secure/ViewIssue.jspa?key=XDT-343


Here is an overview of the issue:
---------------------------------------------------------------------
        Key: XDT-343
    Summary: User defined type IDs are mistaken for composite IDs
       Type: Improvement

     Status: Assigned
   Priority: Major

 Time Spent: Unknown
   Estimate: 0 minutes

    Project: XDoclet
  Component: Hibernate Module
   Versions:
             1.2 Beta 3

   Assignee: xdoclet-devel (Use for new issues)
   Reporter: Tobin Paterson

    Created: Sat, 1 Mar 2003 7:50 PM
    Updated: Sat, 1 Mar 2003 7:52 PM

Description:
In 1.2Beta2 the following:

/**
 * @hibernate.id
 *       column="id"
 *       generator-class="org.tobinuus.domain.hibernate.PKGenerator"
 *       unsaved-value="null"
 *       type="org.tobinuus.domain.hibernate.PKType"
 *       length="32"
 */
public PK getId()
{
   return m_id;
}

correctly generated:

<id
     name="id"
     type="org.tobinuus.domain.hibernate.PKType"
     length="32"
     unsaved-value="null"
>
   <generator class="org.tobinuus.domain.hibernate.PKGenerator">
   </generator>
</id>

the current cvs version mistakes the user defined type as a composite and generates:

<composite-id
 name="id"
 class="org.tobinuus.domain.types.PK"
 unsaved-value="null"
>
</composite-id>



---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/xdoclet/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to