FileDocCategorySizeDatePackage
CallInfo.javaAPI DocAndroid 5.1 API1985Thu Mar 12 22:22:42 GMT 2015com.android.internal.telephony

CallInfo

public class CallInfo extends Object implements android.os.Parcelable
A parcelable holder class of Call information data.

Fields Summary
private String
handle
Endpoint to which the call is connected. This could be the dialed value for outgoing calls or the caller id of incoming calls.
public static final Parcelable.Creator
CREATOR
Responsible for creating CallInfo objects for deserialized Parcels.
Constructors Summary
public CallInfo(String handle)

        this.handle = handle;
    
Methods Summary
public intdescribeContents()
{@inheritDoc}


          
    
       
        return 0;
    
public java.lang.StringgetHandle()

        return handle;
    
public voidwriteToParcel(android.os.Parcel destination, int flags)
Writes CallInfo object into a serializeable Parcel.

        destination.writeString(handle);