< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/MenuBar.java

Print this page

        

*** 137,146 **** --- 137,147 ---- * * Note that trying to uni-directionally bind to this property * will throw a RuntimeException. Please use * bi-directional binding to this property instead. * + * @return the use system menu bar property * @since JavaFX 2.1 */ public final BooleanProperty useSystemMenuBarProperty() { if (useSystemMenuBar == null) { useSystemMenuBar = new StyleableBooleanProperty() {
*** 188,197 **** --- 189,199 ---- **************************************************************************/ /** * The menus to show within this MenuBar. If this ObservableList is modified at * runtime, the MenuBar will update as expected. + * @return the list of menus to show within this MenuBar * @see Menu */ public final ObservableList<Menu> getMenus() { return menus; }
< prev index next >