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

IDragUpDown.java « dnd « helper « ui « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73f0a001b1be1929b286f8b1dacaa4aad40f9ca0 (plain)
1
2
3
4
5
6
7
package it.niedermann.nextcloud.deck.ui.helper.dnd;

public interface IDragUpDown<T>  {
    void itemSwipedUp(T item);
    void itemSwipedDown(T item);

}