/**@class android.os.AsyncTask.Status @extends java.lang.Enum Indicates the current status of the task. Each status will be set only once during the lifetime of a task. */ var Status = { /** Indicates that the task has not been executed yet. */ PENDING : "null", /** Indicates that the task is running. */ RUNNING : "null", /** Indicates that {@link android.os.AsyncTask#onPostExecute} has finished. */ FINISHED : "null", /** */ values : function( ) {}, /** */ valueOf : function( ) {}, };