]> source.dussan.org Git - vaadin-framework.git/commitdiff
Minor fix for javadocs (#8710)
authorIlia Motornyi <elmot@vaadin.com>
Wed, 1 Mar 2017 06:10:00 +0000 (08:10 +0200)
committerHenri Sara <henri.sara@gmail.com>
Tue, 7 Mar 2017 13:43:00 +0000 (15:43 +0200)
server/src/main/java/com/vaadin/data/provider/DataProvider.java

index 2fee0eef84c3f7a1341e13cae667ea89ccffe3a6..e609eaaf03f35bfb3da7ac5acd6d4089d40ca9e2 100644 (file)
@@ -53,8 +53,8 @@ import com.vaadin.shared.Registration;
  * @see #ofCollection(Collection)
  * @see #ofItems(Object...)
  * @see #fromStream(Stream)
- * @see #fromCallbacks(SerializableFunction, SerializableToIntFunction)
- * @see #fromFilteringCallbacks(SerializableFunction, SerializableToIntFunction)
+ * @see #fromCallbacks(FetchCallback, CountCallback)
+ * @see #fromFilteringCallbacks(FetchCallback, CountCallback)
  * @see ListDataProvider
  * @see BackEndDataProvider
  *
@@ -277,7 +277,7 @@ public interface DataProvider<T, F> extends Serializable {
      * <p>
      * <strong>Using big streams is not recommended, you should instead use a
      * lazy data provider.</strong> See
-     * {@link #fromCallbacks(SerializableFunction, SerializableToIntFunction)}
+     * {@link #fromCallbacks(FetchCallback, CountCallback)}
      * or {@link BackEndDataProvider} for more info.
      *
      * @param <T>