javamanager/javainstaller/installer/javasrc/com/nokia/mj/impl/installer/midp2/install/steps/InstallBall.java
changeset 76 4ad59aaee882
parent 48 e0d6e9bd3ca7
child 83 26b2b12093af
equal deleted inserted replaced
69:773449708c84 76:4ad59aaee882
   231             iApplicationRegistrator.notifyLauncherThatUiIsReady();
   231             iApplicationRegistrator.notifyLauncherThatUiIsReady();
   232         }
   232         }
   233     }
   233     }
   234 
   234 
   235     /**
   235     /**
       
   236      * Called when InstallerUi is hidden or unhidden.
       
   237      *
       
   238      * @param aHidden true if UI was hidden, false if UI was unhidden.
       
   239      */
       
   240     public void uiIsHidden(boolean aHidden)
       
   241     {
       
   242         log("InstallBall.uiIsHidden " + aHidden);
       
   243         if (iSifNotifier == null)
       
   244         {
       
   245             Log.logWarning("InstallBall.uiIsHidden(" + aHidden +
       
   246                            ") called when SifNotifier does not exist");
       
   247             return;
       
   248         }
       
   249         iSifNotifier.setInstallerUi(getInstallerUi());
       
   250         if (aHidden)
       
   251         {
       
   252             iSifNotifier.activateIndicator();
       
   253         }
       
   254         else
       
   255         {
       
   256             iSifNotifier.deactivateIndicator();
       
   257         }
       
   258     }
       
   259 
       
   260     /**
   236      * Called when user cancels the execution from the InstallerUi.
   261      * Called when user cancels the execution from the InstallerUi.
   237      * This method must return quickly.
   262      * This method must return quickly.
   238      */
   263      */
   239     public void cancel()
   264     public void cancel()
   240     {
   265     {