Home | History | Annotate | Download | only in view

Lines Matching defs:AbsSavedState

26 public abstract class AbsSavedState implements Parcelable {
27 public static final AbsSavedState EMPTY_STATE = new AbsSavedState() {};
34 private AbsSavedState() {
43 protected AbsSavedState(Parcelable superState) {
55 protected AbsSavedState(Parcel source) {
74 public static final Parcelable.Creator<AbsSavedState> CREATOR
75 = new Parcelable.Creator<AbsSavedState>() {
77 public AbsSavedState createFromParcel(Parcel in) {
85 public AbsSavedState[] newArray(int size) {
86 return new AbsSavedState[size];