modules/controls/src/test/java/com/sun/javafx/scene/control/ContextMenuContentRetriever.java

Print this page
rev 9240 : 8076423: JEP 253: Prepare JavaFX UI Controls & CSS APIs for Modularization


   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package com.sun.javafx.scene.control.skin;
  26 
  27 import com.sun.javafx.scene.control.infrastructure.KeyEventFirer;
  28 import com.sun.javafx.scene.control.infrastructure.MouseEventFirer;
  29 import javafx.collections.ObservableList;
  30 import javafx.scene.Node;
  31 import javafx.scene.control.ContextMenu;
  32 import javafx.scene.control.CustomMenuItem;
  33 import javafx.scene.control.Menu;
  34 import javafx.scene.control.MenuItem;

  35 import javafx.scene.input.KeyCode;
  36 
  37 import java.util.Optional;
  38 
  39 public class ContextMenuContentRetriever {
  40 
  41     private ContextMenuContentRetriever() {
  42         // no-op
  43     }
  44 
  45     public static Menu getOpenSubMenu(ContextMenu menu) {
  46         ContextMenuContent content = getMenuContent(menu);
  47         return content.getOpenSubMenu();
  48     }
  49 
  50     public static Menu getShowingSubMenu(ContextMenu menu) {
  51         ContextMenuContent content = getMenuContent(menu);
  52         Menu showingSubMenu = content.getOpenSubMenu();
  53         ContextMenu subContextMenu = content.getSubMenu();
  54 




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package com.sun.javafx.scene.control;
  26 
  27 import com.sun.javafx.scene.control.infrastructure.KeyEventFirer;
  28 import com.sun.javafx.scene.control.infrastructure.MouseEventFirer;
  29 import javafx.collections.ObservableList;
  30 import javafx.scene.Node;
  31 import javafx.scene.control.ContextMenu;
  32 import javafx.scene.control.CustomMenuItem;
  33 import javafx.scene.control.Menu;
  34 import javafx.scene.control.MenuItem;
  35 import javafx.scene.control.skin.ContextMenuSkin;
  36 import javafx.scene.input.KeyCode;
  37 
  38 import java.util.Optional;
  39 
  40 public class ContextMenuContentRetriever {
  41 
  42     private ContextMenuContentRetriever() {
  43         // no-op
  44     }
  45 
  46     public static Menu getOpenSubMenu(ContextMenu menu) {
  47         ContextMenuContent content = getMenuContent(menu);
  48         return content.getOpenSubMenu();
  49     }
  50 
  51     public static Menu getShowingSubMenu(ContextMenu menu) {
  52         ContextMenuContent content = getMenuContent(menu);
  53         Menu showingSubMenu = content.getOpenSubMenu();
  54         ContextMenu subContextMenu = content.getSubMenu();
  55