summaryrefslogtreecommitdiffstats
path: root/documentation/advanced
diff options
context:
space:
mode:
authorGuglielmo Moretti <guglielmo.moretti@gmail.com>2016-02-12 12:18:11 +0100
committerMarko Grönroos <magi@vaadin.com>2016-05-02 12:51:29 +0000
commit39b2142869f8b890eb451ae68ba0ad19bbb0ff63 (patch)
treee46079a97db72c3a1425aca0ccb82e6a19cad876 /documentation/advanced
parent034b61de038532aa4f444e3a4740da75459f8dda (diff)
downloadvaadin-framework-39b2142869f8b890eb451ae68ba0ad19bbb0ff63.tar.gz
vaadin-framework-39b2142869f8b890eb451ae68ba0ad19bbb0ff63.zip
Update advanced-dragndrop.asciidoc
Error on formatting at line 299 Change-Id: I8ca16880dd77def9e01b5d51c3186cb0ed4fba41
Diffstat (limited to 'documentation/advanced')
-rw-r--r--documentation/advanced/advanced-dragndrop.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/advanced/advanced-dragndrop.asciidoc b/documentation/advanced/advanced-dragndrop.asciidoc
index 69335c6369..814883357f 100644
--- a/documentation/advanced/advanced-dragndrop.asciidoc
+++ b/documentation/advanced/advanced-dragndrop.asciidoc
@@ -296,7 +296,7 @@ components, including [classname]#Tree# and [classname]#Table#.
[classname]#AcceptItem#:: Accepts only specific items from a specific selection component. The selection component, which must inherit [classname]#AbstractSelect#, is given as the first parameter for the constructor. It is followed by a list of allowed item identifiers in the drag source.
[classname]#AcceptItem.ALL#:: Accepts all transferables as long as they are items.
[classname]#TargetItemIs#:: Accepts all drops on the specified target items. The constructor requires the target component ( [classname]#AbstractSelect#) followed by a list of allowed item identifiers.
-[classname]#VerticalLocationIs.MIDDLE#,[classname]#TOP#, and[classname]#BOTTOM#:: The three static criteria accepts drops on, above, or below an item. For example, you could accept drops only in between items with the following:
+[classname]#VerticalLocationIs.MIDDLE#, [classname]#TOP#, and [classname]#BOTTOM#:: The three static criteria accepts drops on, above, or below an item. For example, you could accept drops only in between items with the following:
[source, java]
----
public AcceptCriterion getAcceptCriterion() {