Exemplo n.º 1
0
 /**
  * Sets the extra buttons shown
  *
  * @param shown if the extra buttons should be shown
  */
 public static void setExtraButtonsDhown(boolean shown) {
   ExtraButtons.setShown(shown);
 }
Exemplo n.º 2
0
 /** hides the extra buttons */
 public static void hideExtraButtons() {
   ExtraButtons.hide();
 }
Exemplo n.º 3
0
 /**
  * Returns if the extra buttons are shown.
  *
  * @return <code>true</code> if the extra buttons are shown, <code>false</code> if not
  */
 public static boolean getExtraButtonsShown() {
   return ExtraButtons.isShown();
 }
Exemplo n.º 4
0
 /** shows the extra buttons */
 public static void showExtraButtons() {
   ExtraButtons.show();
 }