Update of /cvsroot/xdoclet/xdoclet/modules/hibernate/src/META-INF
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17800/src/META-INF

Modified Files:
        xtags.xml 
Log Message:
XDT-1478: added @hibernate.idbag tag

Index: xtags.xml
===================================================================
RCS file: /cvsroot/xdoclet/xdoclet/modules/hibernate/src/META-INF/xtags.xml,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -r1.68 -r1.69
*** xtags.xml   28 Jul 2005 15:00:49 -0000      1.68
--- xtags.xml   29 Jul 2005 17:42:09 -0000      1.69
***************
*** 726,729 ****
--- 726,761 ----
  
              <tag>
+                 <level>method</level>
+                 <name>hibernate.collection-id</name>
+                 <usage-description>
+                     Declares a collection id
+                 </usage-description>
+                 <unique>true</unique>
+                 <condition-description>Hibernate</condition-description>
+                 <condition type="method" />
+                 <parameter type="text">
+                     <name>column</name>
+                     <usage-description>
+                         The name of the id column
+                     </usage-description>
+                     <mandatory>true</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>type</name>
+                     <usage-description>
+                         column type
+                     </usage-description>
+                     <mandatory>true</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>length</name>
+                     <usage-description>
+                         column type length
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+             </tag>
+ 
+             <tag>
                  <level>class</level>
                  <name>hibernate.column</name>
***************
*** 1539,1542 ****
--- 1571,1766 ----
              <tag>
                  <level>method</level>
+                 <name>hibernate.idbag</name>
+                 <usage-description>Defines an idbag</usage-description>
+                 <unique>true</unique>
+                 <condition-description>Hibernate</condition-description>
+                 <condition type="method" />
+                 <parameter type="text">
+                     <name>access</name>
+                     <usage-description>
+                         The strategy Hibernate should use for accessing
+                         the property value.
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                     <default>property</default>
+                     <option-sets>
+                         <option-set>
+                             <options>
+                                 <option>field</option>
+                                 <option>property</option>
+                                 <option>ClassName</option>
+                             </options>
+                         </option-set>
+                     </option-sets>
+                 </parameter>
+                 <parameter type="text">
+                     <name>table</name>
+                     <usage-description>
+                         Defaults to role name: the name of the
+                         collection table (not used for one-to-many
+                         associations)
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>schema</name>
+                     <usage-description>
+                         The name of a table schema to override the
+                         schema declared
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>catalog</name>
+                     <usage-description>
+                         The name of a catalog the default
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>subselect</name>
+                     <usage-description>
+                         Specify a subselect SQL expression
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="bool">
+                     <name>lazy</name>
+                     <usage-description>
+                         Enable lazy initialization
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                     <default>false</default>
+                 </parameter>
+                 <parameter type="text">
+                     <name>cascade</name>
+                     <usage-description>
+                         Specifies which operations should be cascaded
+                         from the parent object to the associated object
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                     <option-sets>
+                         <option-set>
+                             <options>
+                                 <option>all</option>
+                                 <option>none</option>
+                                 <option>save-update</option>
+                                 <option>delete</option>
+                                 <option>all-delete-orphan</option>
+                                 <option>delete-orphan</option>
+                             </options>
+                         </option-set>
+                     </option-sets>
+                 </parameter>
+                 <parameter type="bool">
+                     <name>order-by</name>
+                     <usage-description>
+                         order-by field
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                     <default>false</default>
+                 </parameter>
+                 <parameter type="text">
+                     <name>where</name>
+                     <usage-description>
+                         An SQL WHERE condition
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>batch-size</name>
+                     <usage-description>
+                         Specify a "batch size" for lazily fetching
+                         instances of this collection
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>outer-join</name>
+                     <usage-description>
+                         Enable outer-join fetching
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                     <default>auto</default>
+                     <option-sets>
+                         <option-set>
+                             <options>
+                                 <option>true</option>
+                                 <option>false</option>
+                                 <option>auto</option>
+                             </options>
+                         </option-set>
+                     </option-sets>
+                 </parameter>
+                 <parameter type="text">
+                     <name>fetch</name>
+                     <usage-description>
+                         Choose between outer-join fetching, fetching by
+                         sequential select, and fetching by sequential
+                         subselect.
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                     <default>select</default>
+                     <option-sets>
+                         <option-set>
+                             <options>
+                                 <option>join</option>
+                                 <option>select</option>
+                                 <option>subselect</option>
+                             </options>
+                         </option-set>
+                     </option-sets>
+                 </parameter>
+                 <parameter type="text">
+                     <name>persister</name>
+                     <usage-description>
+                         Specifies a custom ClassPersister
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>collection-type</name>
+                     <usage-description>
+                         Specifies a collection type
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>check</name>
+                     <usage-description>
+                         specify a SQL check expression
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="bool">
+                     <name>optimistic-lock</name>
+                     <usage-description>
+                         Specifies that updates to this property do or do
+                         not require acquisition of the optimistic lock.
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="text">
+                     <name>node</name>
+                     <usage-description>
+                         specify a XML binding node name
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                 </parameter>
+                 <parameter type="bool">
+                     <name>embed-xml</name>
+                     <usage-description>
+                         Should the XML tree for the associated entity
+                         (or collection of value type) will be embedded
+                         directly in the XML tree for the entity that
+                         owns the association?
+                     </usage-description>
+                     <mandatory>false</mandatory>
+                     <default>true</default>
+                 </parameter>
+             </tag>
+             
+             <tag>
+                 <level>method</level>
                  <name>hibernate.index</name>
                  <usage-description>



-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to