Methods Summary |
---|
public synchronized android.net.Uri | getContentUri()To represent the result uri of transaction such as uri of MM.
return mContentUri;
|
public synchronized int | getState()To represent the current state(or the result of processing) to the
ones who wants to know the state.
return mState;
|
synchronized void | setContentUri(android.net.Uri uri)To set the result uri. This method is only invoked by the transactions.
mContentUri = uri;
|
synchronized void | setState(int state)To set the state of transaction. This method is only invoked by
the transactions.
if ((state < INITIALIZED) && (state > FAILED)) {
throw new IllegalArgumentException("Bad state: " + state);
}
mState = state;
|