summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarko Grönroos <magi@iki.fi>2016-01-25 11:30:02 +0200
committerelmot <elmot@vaadin.com>2016-01-26 17:01:45 +0200
commit6d0756a1dd079097a8728739f7acd526cbf49bef (patch)
tree6a4d3438e9f8e6469778fae43fad036ab52a895a
parenta26d76f5c2f1391bfe0687c0b7659b8571dcb753 (diff)
downloadvaadin-framework-6d0756a1dd079097a8728739f7acd526cbf49bef.tar.gz
vaadin-framework-6d0756a1dd079097a8728739f7acd526cbf49bef.zip
Fixed formatting in built-in filter types list
Change-Id: I0354ab1568976a7a2a7e41eea1a88960fc7362ef
-rw-r--r--documentation/datamodel/datamodel-container.asciidoc10
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