Class LoaderCB
- java.lang.Object
-
- com.ibm.wala.dalvik.util.androidEntryPoints.LoaderCB
-
public final class LoaderCB extends Object
Hardcoded specifications of androids loader call-backs. The specifications are read and handled by AndroidEntryPointLocator if the flags of AndroidEntryPointLocator are set to include call-backs.- See Also:
AndroidEntryPointLocator
-
-
Field Summary
Fields Modifier and Type Field Description static AndroidEntryPointLocator.AndroidPossibleEntryPoint
onCreateLoader
Instantiate and return a new Loader for the given ID.static AndroidEntryPointLocator.AndroidPossibleEntryPoint
onLoaderReset
Called when a previously created loader is being reset, and thus making its data unavailable.static AndroidEntryPointLocator.AndroidPossibleEntryPoint
onLoadFinished
Called when a previously created loader has finished its load.
-
Constructor Summary
Constructors Constructor Description LoaderCB()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
populate(List<? super AndroidEntryPointLocator.AndroidPossibleEntryPoint> possibleEntryPoints)
Add the EntryPoint specifications defined in this file to the given list.
-
-
-
Field Detail
-
onCreateLoader
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onCreateLoader
Instantiate and return a new Loader for the given ID.
-
onLoadFinished
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onLoadFinished
Called when a previously created loader has finished its load.
-
onLoaderReset
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onLoaderReset
Called when a previously created loader is being reset, and thus making its data unavailable.
-
-
Method Detail
-
populate
public static void populate(List<? super AndroidEntryPointLocator.AndroidPossibleEntryPoint> possibleEntryPoints)
Add the EntryPoint specifications defined in this file to the given list.- Parameters:
possibleEntryPoints
- the list to extend.
-
-