blob: 86fe67e0e02a506d7759056bcc01d91d9048c9f4 [file] [log] [blame]
package com.example.android.support.wearable.notifications;
import android.content.Context;
import android.support.v4.app.NotificationCompat;
/**
* Base class for notification actions presets.
*/
public abstract class ActionsPreset extends NamedPreset {
public ActionsPreset(int nameResId) {
super(nameResId);
}
/** Apply the priority to a notification builder */
public abstract void apply(Context context, NotificationCompat.Builder builder,
NotificationCompat.WearableExtender wearableOptions);
}