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

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

    void itemSwipedLeft(T item);

}