YassinAJDI/MaterialJournal

View on GitHub
app/src/main/java/com/ajdi/yassin/materialjournal/ui/notes/NoteItemNavigator.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.ajdi.yassin.materialjournal.ui.notes;

/**
 * Defines the navigation actions that can be called from a list item in the note list.
 */
public interface NoteItemNavigator {

    void openNoteDetails(String noteId);
}