Browse Source

apply changes to java doc

Signed-off-by: alex <alex.plutta@googlemail.com>
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
alex 5 years ago
parent
commit
a26a895047

+ 6 - 4
src/main/java/com/owncloud/android/ui/adapter/StickyHeaderAdapter.java

@@ -2,9 +2,11 @@ package com.owncloud.android.ui.adapter;
 
 import android.view.View;
 
+import com.owncloud.android.ui.activities.ActivityListItemDecoration;
+
 public interface StickyHeaderAdapter {
     /**
-     * This method gets called by {@link HeaderItemDecoration} to fetch the position of the header item in the adapter
+     * This method gets called by {@link ActivityListItemDecoration} to fetch the position of the header item in the adapter
      * that is used for (represents) item at specified position.
      * @param itemPosition int. Adapter's position of the item for which to do the search of the position of the header item.
      * @return int. Position of the header item in the adapter.
@@ -12,21 +14,21 @@ public interface StickyHeaderAdapter {
     int getHeaderPositionForItem(int itemPosition);
 
     /**
-     * This method gets called by {@link HeaderItemDecoration} to get layout resource id for the header item at specified adapter's position.
+     * This method gets called by {@link ActivityListItemDecoration} to get layout resource id for the header item at specified adapter's position.
      * @param headerPosition int. Position of the header item in the adapter.
      * @return int. Layout resource id.
      */
     int getHeaderLayout(int headerPosition);
 
     /**
-     * This method gets called by {@link HeaderItemDecoration} to setup the header View.
+     * This method gets called by {@link ActivityListItemDecoration} to setup the header View.
      * @param header View. Header to set the data on.
      * @param headerPosition int. Position of the header item in the adapter.
      */
     void bindHeaderData(View header, int headerPosition);
 
     /**
-     * This method gets called by {@link HeaderItemDecoration} to verify whether the item represents a header.
+     * This method gets called by {@link ActivityListItemDecoration} to verify whether the item represents a header.
      * @param itemPosition int.
      * @return true, if item at the specified adapter's position represents a header.
      */