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

IDragLeftRight.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: 058da7dbaeff3e554415b24dec0fcd31d74873f1 (plain)
1
2
3
4
5
6
7
package it.niedermann.nextcloud.deck.ui.helper.dnd;

public interface IDragLeftRight <T>  {
    void itemSwipedRight(T item);
    void itemSwipedLeft(T item);

}