Searched refs:getPopup (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DPopupMenuUI.java58 public Popup getPopup(JPopupMenu popup, int x, int y) { method in class:PopupMenuUI
61 return popupFactory.getPopup(popup.getInvoker(), popup, x, y);
/openjdk7/jdk/test/javax/swing/JPopupMenu/6800513/
H A Dbug6800513.java68 Field getPopup = JPopupMenu.class.getDeclaredField("popup");
69 getPopup.setAccessible(true);
70 Popup popup = (Popup) getPopup.get(popupMenu);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DScreenPopupFactory.java60 * private method getPopup(Component, Component, int, int, int) through JNI
65 public Popup getPopup(final Component comp, final Component invoker, final int x, final int y) { method in class:ScreenPopupFactory
66 if (invoker == null) throw new IllegalArgumentException("Popup.getPopup must be passed non-null contents");
72 popup = super.getPopup(comp, invoker, x, y);
H A DAquaComboBoxUI.java392 public ComboPopup getPopup() { method in class:AquaComboBoxUI
446 if (aquaUi.getPopup().getList().getSelectedIndex() < 0) {
452 comboBox.setSelectedIndex(aquaUi.getPopup().getList().getSelectedIndex());
457 comboBox.setSelectedIndex(aquaUi.getPopup().getList().getSelectedIndex());
497 comboBox.setSelectedIndex(aquaUi.getPopup().getList().getSelectedIndex());
/openjdk7/jdk/test/javax/swing/JComboBox/4743225/
H A Dbug4743225.java69 public static BasicComboPopup getPopup() { method in class:bug4743225
101 if(getPopup().getList().getLastVisibleIndex() == 3) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiPopupMenuUI.java89 * Invokes the <code>getPopup</code> method on each UI handled by this object.
95 public Popup getPopup(JPopupMenu a, int b, int c) { method in class:MultiPopupMenuUI
97 ((PopupMenuUI) (uis.elementAt(0))).getPopup(a,b,c);
99 ((PopupMenuUI) (uis.elementAt(i))).getPopup(a,b,c);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsPopupMenuUI.java90 public Popup getPopup(JPopupMenu popupMenu, int x, int y) { method in class:WindowsPopupMenuUI
92 return popupFactory.getPopup(popupMenu.getInvoker(), popupMenu, x, y);
/openjdk7/jdk/test/javax/swing/ToolTipManager/7123767/
H A Dbug7123767.java64 public Popup getPopup(Component owner, Component contents, int x, int y) { method in class:bug7123767.TestFactory
79 return super.getPopup(owner, contents, x, y);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DPopupFactory.java48 * Popup popup = factory.getPopup(owner, contents, x, y);
101 * @see #getPopup
162 public Popup getPopup(Component owner, Component contents, method in class:PopupFactory
166 "Popup.getPopup must be passed non-null contents");
170 Popup popup = getPopup(owner, contents, x, y, popupType);
174 popup = getPopup(owner, contents, x, y, HEAVY_WEIGHT_POPUP);
217 private Popup getPopup(Component owner, Component contents, method in class:PopupFactory
H A DJPopupMenu.java738 popup = getPopup();
789 popup = getPopup();
816 private Popup getPopup() { method in class:JPopupMenu
836 Popup newPopup = getUI().getPopup(this, desiredLocationX,
870 popup = getPopup();
1027 popup = getPopup();
H A DToolTipManager.java342 tipWindow = popupFactory.getPopup(insideComponent, tip,

Completed in 49 milliseconds