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

NoteClickListener.java « model « shared « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7194752c4e746b212ad2d8f677811bacb09acaf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
package it.niedermann.owncloud.notes.shared.model;

import android.view.View;

public interface NoteClickListener {
    void onNoteClick(int position, View v);

    void onNoteFavoriteClick(int position, View v);

    boolean onNoteLongClick(int position, View v);
}