Class LoaderCB
java.lang.Object
com.ibm.wala.dalvik.util.androidEntryPoints.LoaderCB
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.
- Author:
- Tobias Blaschke <code@tobiasblaschke.de>
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final AndroidEntryPointLocator.AndroidPossibleEntryPoint
Instantiate and return a new Loader for the given ID.static final AndroidEntryPointLocator.AndroidPossibleEntryPoint
Called when a previously created loader is being reset, and thus making its data unavailable.static final AndroidEntryPointLocator.AndroidPossibleEntryPoint
Called when a previously created loader has finished its load. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
populate
(List<? super AndroidEntryPointLocator.AndroidPossibleEntryPoint> possibleEntryPoints) Add the EntryPoint specifications defined in this file to the given list.
-
Field Details
-
onCreateLoader
Instantiate and return a new Loader for the given ID. -
onLoadFinished
Called when a previously created loader has finished its load. -
onLoaderReset
Called when a previously created loader is being reset, and thus making its data unavailable.
-
-
Constructor Details
-
LoaderCB
public LoaderCB()
-
-
Method Details
-
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.
-