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

SelectedListener.java « preparecreate « 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: ccc4e08ef7c11c04cf4a305e277528e792a7298f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package it.niedermann.nextcloud.deck.ui.preparecreate;

import android.widget.AdapterView;

/**
 * Default interface implementation
 */
public interface SelectedListener extends AdapterView.OnItemSelectedListener {
    @Override
    default void onNothingSelected(AdapterView<?> parent) {
        // Nothing to do here...
    }
}