blueme.messenger.interfaces
Interface iKernel_BootLoader

All Known Implementing Classes:
Kernel

public interface iKernel_BootLoader


Method Summary
 void endApplication()
          Method used to inform the application that is must exit.
 boolean pauseApplication()
          Method returns “true” if the application could be put on pause, “false” otherwise.
 void setBootLoaderReference(iBootLoader_Kernel bootLoader)
          Method used to give a reference for BootLoader to Kernel.
 void setGUIReference(iGUI_Kernel gui)
          Method used to give a reference for GUI to Kernel.
 boolean startApplication()
          Method returns “true” if everything started OK, “false” otherwise.
 

Method Detail

startApplication

boolean startApplication()
Method returns “true” if everything started OK, “false” otherwise. If “false”, the application should exit. This method can not be used before Kernel has a reference to GUI.


pauseApplication

boolean pauseApplication()
Method returns “true” if the application could be put on pause, “false” otherwise. If “false”, the application should be ended.


endApplication

void endApplication()
Method used to inform the application that is must exit.


setGUIReference

void setGUIReference(iGUI_Kernel gui)
Method used to give a reference for GUI to Kernel. Method may only be used ones.


setBootLoaderReference

void setBootLoaderReference(iBootLoader_Kernel bootLoader)
Method used to give a reference for BootLoader to Kernel. Method may only be used ones.