/**
  * If true, redraw the simple form of this menu, else redraw the complex form.
  *
  * @param isSimple true for the simple menu, false for the advanced.
  */
 public void setIsSimple(boolean isSimple) {
   bSimpleInterface = isSimple;
   tbrToolBar.removeAll();
   createToolBarItems();
 }