Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ItemMovedByDragListener.java « crosstabdnd « android « niedermann « it « java « main « src « cross-tab-drag-and-drop - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 737bd2fb0853120fc648911ec2d212d93d81300d (plain)
1
2
3
4
5
package it.niedermann.android.crosstabdnd;

public interface ItemMovedByDragListener<ItemModel> {
    void onItemMoved(ItemModel movedItem, long tabId, int position);
}