Class ApplicationEP
java.lang.Object
com.ibm.wala.dalvik.util.androidEntryPoints.ApplicationEP
Hardcoded EntryPoint-specifications for an Android-Application.
The specifications are read and handled by AndroidEntryPointLocator.
- Author:
- Tobias Blaschke <code@tobiasblaschke.de>
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final AndroidEntryPointLocator.AndroidPossibleEntryPoint
Called by the system when the device configuration changes while your component is running.static final AndroidEntryPointLocator.AndroidPossibleEntryPoint
Called when the application is starting, before any activity, service, or receiver objects (excluding content providers) have been created.static final AndroidEntryPointLocator.AndroidPossibleEntryPoint
This is called when the overall system is running low on memory, and actively running processes should trim their memory usage.static final AndroidEntryPointLocator.AndroidPossibleEntryPoint
Called when the operating system has determined that it is a good time for a process to trim unneeded memory from its process. -
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
-
onCreate
Called when the application is starting, before any activity, service, or receiver objects (excluding content providers) have been created. -
onConfigurationChanged
Called by the system when the device configuration changes while your component is running.Note that, unlike activities, other components are never restarted when a configuration changes: they must always deal with the results of the change, such as by re-retrieving resources.
-
onLowMemory
This is called when the overall system is running low on memory, and actively running processes should trim their memory usage.While the exact point at which this will be called is not defined, generally it will happen when all background process have been killed. That is, before reaching the point of killing processes hosting service and foreground UI that we would like to avoid killing.
-
onTrimMemory
Called when the operating system has determined that it is a good time for a process to trim unneeded memory from its process.
-
-
Constructor Details
-
ApplicationEP
public ApplicationEP()
-
-
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.
-