java.lang.Object |
↳ |
android.os.AsyncTask<Params, Progress, Result> |
|
↳ |
com.pdftron.pdf.asynctask.FindTextTask |
Class Overview
A class that asynchronously finds a pattern through the document
Summary
Nested Classes |
interface |
FindTextTask.Callback |
Callback interface invoked when a pattern is found in the document. |
[Expand]
Inherited Fields |
From class
android.os.AsyncTask
public
static
final
Executor |
SERIAL_EXECUTOR |
|
public
static
final
Executor |
THREAD_POOL_EXECUTOR |
|
|
[Expand]
Inherited Methods |
From class
android.os.AsyncTask
final
boolean
|
cancel(boolean arg0)
|
final
AsyncTask<Params, Progress, Result>
|
execute(Params... arg0)
|
static
void
|
execute(Runnable arg0)
|
final
AsyncTask<Params, Progress, Result>
|
executeOnExecutor(Executor arg0, Params... arg1)
|
final
Result
|
get(long arg0, TimeUnit arg1)
|
final
Result
|
get()
|
final
AsyncTask.Status
|
getStatus()
|
final
boolean
|
isCancelled()
|
|
From class
java.lang.Object
boolean
|
equals(Object arg0)
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
Public Methods
public
String
getPattern
()
public
boolean
isFinished
()
public
boolean
isRunning
()
Sets the callback listener.
Sets the callback to null when the task is cancelled.
Parameters
callback |
The callback when the task is finished
|