Hibernate type tag ignores parameters
-------------------------------------

         Key: XDP-59
         URL: http://jira.codehaus.org/browse/XDP-59
     Project: XDoclet 2 Plugins
        Type: Bug
  Components: hibernate  
    Reporter: Sirvan Yahyaei
    Priority: Minor


/**
 [EMAIL PROTECTED] name="a.B"
 [EMAIL PROTECTED] name="p1" value="v1"
**/
generates <type name="a.B"/> and ignored parameter. 
Also, we can't use two or more typedefs in a mapping file:

/**
 [EMAIL PROTECTED] name="TypeName1" class="EnumUserType"
 [EMAIL PROTECTED] name="enumClassName" value="a.B"
 [EMAIL PROTECTED] name="TypeName2" class="EnumUserType"
 [EMAIL PROTECTED] name="enumClassName" value="a.C"
**/

generates:
 <typedef name="TypeName1" class="EnumUserType">
   <param name="enumClassName">a.B</param>
   <param name="enumClassName">a.C</param>
 </typedef>
 <typedef name="TypeName2" class="EnumUserType">
   <param name="enumClassName">a.B</param>
   <param name="enumClassName">a.C</param>
 </typedef>
instead of:
 <typedef name="TypeName1" class="EnumUserType">
   <param name="enumClassName">a.B</param>
 </typedef>
 <typedef name="TypeName2" class="EnumUserType">
   <param name="enumClassName">a.C</param>
 </typedef>



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



-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
_______________________________________________
xdoclet-plugins-interest mailing list
xdoclet-plugins-interest@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-interest

Reply via email to