Class BaseManager

    • Constructor Summary

      Constructors 
      Constructor Description
      BaseManager()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void dispose()
      Dispose manager and release all necessary resources.
      android.content.Context getContext()
      Get the context for which manager was initialized.
      void init​(android.content.Context context)
      Initialize manager.
      boolean isInit()
      Check initialization of manager.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BaseManager

        public BaseManager()
    • Method Detail

      • isInit

        public boolean isInit()
        Check initialization of manager.
        Specified by:
        isInit in interface Manager
        Returns:
        true, if manager was initialized
      • init

        public void init​(android.content.Context context)
        Initialize manager.
        Specified by:
        init in interface Manager
        Parameters:
        context - the context for which manager will be initialized.
      • getContext

        public android.content.Context getContext()
        Get the context for which manager was initialized.
        Specified by:
        getContext in interface Manager
        Returns:
        the context
      • dispose

        public void dispose()
        Dispose manager and release all necessary resources.
        Specified by:
        dispose in interface Manager