diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-05-25 13:14:23 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-05-25 13:14:23 +0000 |
commit | 6e82a663398541cfe945fb0819bcda56900b3955 (patch) | |
tree | 65cb9fdfc24b35267a070416efc8c3b5814ad5b0 /src/com/vaadin | |
parent | 2556ee7993dff3d23b78fe27af5595a311969380 (diff) | |
download | vaadin-framework-6e82a663398541cfe945fb0819bcda56900b3955.tar.gz vaadin-framework-6e82a663398541cfe945fb0819bcda56900b3955.zip |
minor javadoc fix
svn changeset:13358/svn branch:6.4
Diffstat (limited to 'src/com/vaadin')
-rw-r--r-- | src/com/vaadin/data/util/DefaultItemSorter.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/com/vaadin/data/util/DefaultItemSorter.java b/src/com/vaadin/data/util/DefaultItemSorter.java index 1e83715ace..a2ecd38ef8 100644 --- a/src/com/vaadin/data/util/DefaultItemSorter.java +++ b/src/com/vaadin/data/util/DefaultItemSorter.java @@ -113,7 +113,10 @@ public class DefaultItemSorter implements ItemSorter { * The first item to compare. * @param item2 * The second item to compare. - * @return + * @return a negative, zero, or positive integer if the property value in + * the first item is less than, equal to, or greater than the + * property value in the second item. Negated if {@code + * sortDirection} is false. */ protected int compareProperty(Object propertyId, boolean sortDirection, Item item1, Item item2) { |