Home | History | Annotate | Download | only in notification

Lines Matching defs:Adjustment

30 public final class Adjustment implements Parcelable {
43 * Create a notification adjustment.
49 * @param explanation A human-readable justification for the adjustment.
55 public Adjustment(String pkg, String key, int importance, Bundle signals,
66 protected Adjustment(Parcel in) {
88 public static final Creator<Adjustment> CREATOR = new Creator<Adjustment>() {
90 public Adjustment createFromParcel(Parcel in) {
91 return new Adjustment(in);
95 public Adjustment[] newArray(int size) {
96 return new Adjustment[size];