예제 #1
0
 public State getState() {
   return context.getState();
 }
예제 #2
0
 @Override
 public String toString() {
   return context.toString();
 }
예제 #3
0
 public List<AsyncTaskInfo> getAsynchronousStackTraceDump() {
   List<AsyncTaskInfo> result = new ArrayList<AsyncTaskInfo>();
   context.getAsynchronousStackTraceDump(result);
   return result;
 }
예제 #4
0
 public String getAsynchronousStackTraceDumpAsString() {
   return context.getAsynchronousStackTraceDumpAsString();
 }
예제 #5
0
 public StackTraceElement[] getStackTrace() {
   return context.getStackTrace().getStackTrace();
 }
예제 #6
0
 public boolean isCancelRequested() {
   return context.isCancelRequested();
 }
예제 #7
0
 public void cancel(Throwable cause) {
   context.cancel(cause);
 }
예제 #8
0
 public void setName(String name) {
   context.setName(name);
 }
예제 #9
0
 public String getName() {
   return context.getName();
 }