Browse Source

Enhanced javadoc

svn changeset:18623/svn branch:6.6
tags/6.7.0.beta1
Matti Tahvonen 13 years ago
parent
commit
125fb56e4b
1 changed files with 10 additions and 1 deletions
  1. 10
    1
      src/com/vaadin/ui/Table.java

+ 10
- 1
src/com/vaadin/ui/Table.java View File

@@ -3139,7 +3139,16 @@ public class Table extends AbstractSelect implements Action.Container,
}

/**
* Returns the list of items on the current page
* Returns item identifiers of the items which are currently rendered on the
* client.
* <p>
* Note, that some due to historical reasons the name of the method is bit
* misleading. Some items may be partly or totally out of the viewport of
* the table's scrollable area. Actully detecting rows which can be actually
* seen by the end user may be problematic due to the client server
* architecture. Using {@link #getCurrentPageFirstItemId()} combined with
* {@link #getPageLength()} may produce good enough estimates in some
* situations.
*
* @see com.vaadin.ui.Select#getVisibleItemIds()
*/

Loading…
Cancel
Save