/** * Sets the extra buttons shown * * @param shown if the extra buttons should be shown */ public static void setExtraButtonsDhown(boolean shown) { ExtraButtons.setShown(shown); }
/** hides the extra buttons */ public static void hideExtraButtons() { ExtraButtons.hide(); }
/** * 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(); }
/** shows the extra buttons */ public static void showExtraButtons() { ExtraButtons.show(); }