public class CachedCell
extends java.lang.Object
implements android.os.Parcelable
| Modifier and Type | Field and Description |
|---|---|
static android.os.Parcelable.Creator<CachedCell> |
CREATOR |
| Modifier | Constructor and Description |
|---|---|
|
CachedCell(int column,
int width) |
|
CachedCell(int column,
int width,
boolean constant) |
protected |
CachedCell(android.os.Parcel in) |
| Modifier and Type | Method and Description |
|---|---|
int |
describeContents()
Describe the kinds of special objects contained in this Parcelable
instance's marshaled representation.
|
int |
getColumn() |
int |
getWidth() |
boolean |
isConstant() |
void |
writeToParcel(android.os.Parcel dest,
int flags)
Flatten this object in to a Parcel.
|
public static final android.os.Parcelable.Creator<CachedCell> CREATOR
public CachedCell(int column,
int width)
public CachedCell(int column,
int width,
boolean constant)
protected CachedCell(android.os.Parcel in)
public int getColumn()
public int getWidth()
public boolean isConstant()
public int describeContents()
writeToParcel(Parcel, int),
the return value of this method must include the
Parcelable.CONTENTS_FILE_DESCRIPTOR bit.describeContents in interface android.os.Parcelablepublic void writeToParcel(android.os.Parcel dest,
int flags)
writeToParcel in interface android.os.Parcelabledest - The Parcel in which the object should be written.flags - Additional flags about how the object should be written. May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE.