android_external_GmsLib/src/com/google/android/gms/common/api/Status.java

14 lines
252 B
Java

package com.google.android.gms.common.api;
/**
* Represents the results of work.
* <p/>
* TODO: content (is this IPC API?)
*/
public final class Status implements Result {
@Override
public Status getStatus() {
return this;
}
}