diff options
author | Marko Grönroos <magi@iki.fi> | 2016-01-25 11:30:02 +0200 |
---|---|---|
committer | Marko Gronroos <magi@vaadin.com> | 2016-01-25 13:29:25 +0200 |
commit | f8fd39cc8c599a81171f06081886d0171c90309d (patch) | |
tree | f8c3c3e2b2633cfb95306c47a3a5ea22575b0639 /documentation | |
parent | 9ef382a5d33603932dd3adadcf36856d5b9622a4 (diff) | |
download | vaadin-framework-f8fd39cc8c599a81171f06081886d0171c90309d.tar.gz vaadin-framework-f8fd39cc8c599a81171f06081886d0171c90309d.zip |
Fixed formatting in built-in filter types list
Change-Id: If69c5a9822a8b07526ffb9e52c2161af4c1093a3
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/datamodel/datamodel-container.asciidoc | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/documentation/datamodel/datamodel-container.asciidoc b/documentation/datamodel/datamodel-container.asciidoc index 8f88e7c8bf..c68e4bec4e 100644 --- a/documentation/datamodel/datamodel-container.asciidoc +++ b/documentation/datamodel/datamodel-container.asciidoc @@ -722,14 +722,11 @@ filtering, a simple [literal]#++==++# check is performed. For other containers, the comparison implementation is container dependent, but should correspond to the in-memory null check. -[classname]#Equal#,[classname]#Greater#, - [classname]#Less#, - [classname]#GreaterOrEqual#, and[classname]#LessOrEqual#:: ((("[classname]#Equal# (filter)"))) +[classname]#Equal#, [classname]#Greater#, [classname]#Less#, [classname]#GreaterOrEqual#, and [classname]#LessOrEqual#:: ((("[classname]#Equal# (filter)"))) ((("[classname]#Greater# (filter)"))) ((("[classname]#Less# (filter)"))) ((("[classname]#GreaterOrEqual# (filter)"))) ((("[classname]#LessOrEqual# (filter)"))) -+ The comparison filter implementations compare the specified property value to the given constant and pass items for which the comparison result is true. The comparison operators are included in the abstract [classname]#Compare# class. @@ -746,7 +743,7 @@ For the other filters, the property value type must implement the containers. Again for the other types of containers, the comparison is container dependent. -[classname]#And#and[classname]#Or#:: ((("[classname]#And# (filter)"))) +[classname]#And# and [classname]#Or#:: ((("[classname]#And# (filter)"))) ((("[classname]#Or# (filter)"))) + These logical operator filters are composite filters that combine multiple other @@ -757,9 +754,6 @@ filters. The logical unary operator filter negates which items are passed by the filter given as the parameter. - - - [[datamodel.container.filtered.custom]] === Implementing Custom Filters |