Methods Summary |
---|
protected static android.telephony.CellInfoWcdma | createFromParcelBody(android.os.Parcel in)
return new CellInfoWcdma(in);
|
public int | describeContents()Implement the Parcelable interface
return 0;
|
public boolean | equals(java.lang.Object other)
if (!super.equals(other)) {
return false;
}
try {
CellInfoWcdma o = (CellInfoWcdma) other;
return mCellIdentityWcdma.equals(o.mCellIdentityWcdma)
&& mCellSignalStrengthWcdma.equals(o.mCellSignalStrengthWcdma);
} catch (ClassCastException e) {
return false;
}
|
public CellIdentityWcdma | getCellIdentity()
return mCellIdentityWcdma;
|
public CellSignalStrengthWcdma | getCellSignalStrength()
return mCellSignalStrengthWcdma;
|
public int | hashCode()
return super.hashCode() + mCellIdentityWcdma.hashCode() + mCellSignalStrengthWcdma.hashCode();
|
private static void | log(java.lang.String s)log
Rlog.w(LOG_TAG, s);
|
public void | setCellIdentity(CellIdentityWcdma cid)
mCellIdentityWcdma = cid;
|
public void | setCellSignalStrength(CellSignalStrengthWcdma css)
mCellSignalStrengthWcdma = css;
|
public java.lang.String | toString()
StringBuffer sb = new StringBuffer();
sb.append("CellInfoWcdma:{");
sb.append(super.toString());
sb.append(" ").append(mCellIdentityWcdma);
sb.append(" ").append(mCellSignalStrengthWcdma);
sb.append("}");
return sb.toString();
|
public void | writeToParcel(android.os.Parcel dest, int flags)Implement the Parcelable interface
super.writeToParcel(dest, flags, TYPE_WCDMA);
mCellIdentityWcdma.writeToParcel(dest, flags);
mCellSignalStrengthWcdma.writeToParcel(dest, flags);
|