com.github.kaiwinter.androidremotenotifications.model.buttonaction.ButtonAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-remote-notifications Show documentation
Show all versions of android-remote-notifications Show documentation
Pulls notifications from a remote JSON file and shows them in your app.
package com.github.kaiwinter.androidremotenotifications.model.buttonaction;
import android.content.Context;
/**
* Provides an action which will be carried out by the selection of a button.
*/
public interface ButtonAction {
/**
* Executes the action of this button.
*
* @param context the application context
*/
void execute(Context context);
@Override
int hashCode();
@Override
boolean equals(Object obj);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy