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