/** * Provides a list view and list adapter to display a note. It will have a header view to show * the avatar and other details for the post. * * More specialized note adapters will need to be made to provide the correct views for the type * of note/note template it has. */ package org.wordpress.android.ui.notifications; import org.wordpress.android.models.Note; interface NotificationFragment { public Note getNote(); public void setNote(Note note); }