Class ApplicationEP


  • public final class ApplicationEP
    extends Object
    Hardcoded EntryPoint-specifications for an Android-Application. The specifications are read and handled by AndroidEntryPointLocator. see: http://developer.android.com/reference/android/app/Application.html
    See Also:
    AndroidEntryPointLocator
    • Field Detail

      • onConfigurationChanged

        public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint 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

        public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint 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.
    • Constructor Detail

      • ApplicationEP

        public ApplicationEP()