[hibernate-commits] Hibernate SVN: r12737 - in trunk/HibernateExt/annotations/doc/reference: fr/modules and 1 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Sat Jul 7 18:38:02 EDT 2007


Author: d.plentz
Date: 2007-07-07 18:38:01 -0400 (Sat, 07 Jul 2007)
New Revision: 12737

Modified:
   trunk/HibernateExt/annotations/doc/reference/en/modules/entity.xml
   trunk/HibernateExt/annotations/doc/reference/fr/modules/entity.xml
   trunk/HibernateExt/annotations/doc/reference/zh_cn/modules/entity.xml
Log:
[ANN-581] Improvement in "2.4.8. Filters"

Modified: trunk/HibernateExt/annotations/doc/reference/en/modules/entity.xml
===================================================================
--- trunk/HibernateExt/annotations/doc/reference/en/modules/entity.xml	2007-07-07 22:17:37 UTC (rev 12736)
+++ trunk/HibernateExt/annotations/doc/reference/en/modules/entity.xml	2007-07-07 22:38:01 UTC (rev 12737)
@@ -3429,7 +3429,7 @@
       and placed either on the entity or the collection element</para>
 
       <para><programlisting>@Entity
- at FilterDef(name="minLength", parameters={ @ParamDef( name="minLength", type="integer" ) } )
+ at FilterDef(name="minLength", parameters=@ParamDef( name="minLength", type="integer" ) )
 @Filters( {
     @Filter(name="betweenLength", condition=":minLength &lt;= length and :maxLength &gt;= length"),
     @Filter(name="minLength", condition=":minLength &lt;= length")

Modified: trunk/HibernateExt/annotations/doc/reference/fr/modules/entity.xml
===================================================================
--- trunk/HibernateExt/annotations/doc/reference/fr/modules/entity.xml	2007-07-07 22:17:37 UTC (rev 12736)
+++ trunk/HibernateExt/annotations/doc/reference/fr/modules/entity.xml	2007-07-07 22:38:01 UTC (rev 12737)
@@ -3366,7 +3366,7 @@
       l'élément de la collection.</para>
 
       <para><programlisting>@Entity
- at FilterDef(name="minLength", parameters={ @ParamDef( name="minLength", type="integer" ) } )
+ at FilterDef(name="minLength", parameters=@ParamDef( name="minLength", type="integer" ) )
 @Filters( {
     @Filter(name="betweenLength", condition=":minLength &lt;= length and :maxLength &gt;= length"),
     @Filter(name="minLength", condition=":minLength &lt;= length")

Modified: trunk/HibernateExt/annotations/doc/reference/zh_cn/modules/entity.xml
===================================================================
--- trunk/HibernateExt/annotations/doc/reference/zh_cn/modules/entity.xml	2007-07-07 22:17:37 UTC (rev 12736)
+++ trunk/HibernateExt/annotations/doc/reference/zh_cn/modules/entity.xml	2007-07-07 22:38:01 UTC (rev 12737)
@@ -2791,7 +2791,7 @@
       <para>现在我们来定义应用于实体或集合加载时的SQL过滤器子句.我们使用<literal>@Filter</literal>,并将其置于实体或集合元素上.</para>
 
       <para><programlisting>@Entity
- at FilterDef(name="minLength", parameters={ @ParamDef( name="minLength", type="integer" ) } )
+ at FilterDef(name="minLength", parameters=@ParamDef( name="minLength", type="integer" ) )
 @Filters( {
     @Filter(name="betweenLength", condition=":minLength &lt;= length and :maxLength &gt;= length"),
     @Filter(name="minLength", condition=":minLength &lt;= length")




More information about the hibernate-commits mailing list