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

CreateCardListener.java « card « 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: 49055cede259f09a1a3b438b1f8702f07a9b5890 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package it.niedermann.nextcloud.deck.ui.card;

import android.content.DialogInterface;

import androidx.annotation.NonNull;

import it.niedermann.nextcloud.deck.model.full.FullCard;

public interface CreateCardListener extends DialogInterface.OnDismissListener {
    /**
     * This method is called when a new Card is created
     *
     * @param createdCard The new Card's data
     */
    void onCardCreated(@NonNull FullCard createdCard);

}