Methods Summary |
---|
public int | describeContents()
return 0;
|
public InputConnection | getConnection()Return the connection for interacting back with the application.
return mConnection;
|
public android.os.IBinder | getConnectionToken()Return the token for the connection back to the application. You can
not use this directly, it must be converted to a {@link InputConnection}
for you.
return mConnectionToken;
|
public int | getPid()Return the process id where this binding came from.
return mPid;
|
public int | getUid()Return the user id of the client associated with this binding.
return mUid;
|
public java.lang.String | toString()
return "InputBinding{" + mConnectionToken
+ " / uid " + mUid + " / pid " + mPid + "}";
|
public void | writeToParcel(android.os.Parcel dest, int flags)Used to package this object into a {@link Parcel}.
dest.writeStrongBinder(mConnectionToken);
dest.writeInt(mUid);
dest.writeInt(mPid);
|