Searched defs:hide (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DComboPopup.java58 public void hide(); method in interface:ComboPopup
H A DBasicComboPopup.java213 * Implementation of ComboPopup.hide().
215 public void hide() { method in class:BasicComboPopup
943 hide();
949 hide();
1125 hide();
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaMnemonicHandler.java44 public static void setMnemonicHidden(final boolean hide) { argument
46 // Do not hide mnemonics if the UI defaults do not support this
49 isMnemonicHidden = hide;
54 * Gets the state of the hide mnemonic flag. This only has meaning if this feature is supported by the underlying OS.
62 // Do not hide mnemonics if the UI defaults do not support this
H A DAquaInternalFrameDockIconUI.java126 if (fDockLabel != null) fDockLabel.hide();
136 // if the mouse was completely outside fIconPane, hide the label
137 if (fDockLabel != null && !fIconPane.getBounds().contains(e.getX(), e.getY())) fDockLabel.hide();
149 if (fDockLabel != null && (e.getModifiers() & InputEvent.BUTTON1_MASK) == 0) fDockLabel.hide();
304 public void hide() { method in class:AquaInternalFrameDockIconUI.DockLabel
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DNodeImpl.java79 public void setReadOnly(boolean hide, boolean deep) { argument
80 hidden = hide;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DPopup.java38 * <code>hide</code> method), you should no longer
117 public void hide() { method in class:Popup
121 component.hide();
H A DPopupFactory.java44 * <code>PopupFactory</code>, you must invoke <code>hide</code> on the
51 * popup.hide();
454 public void hide() { method in class:PopupFactory.HeavyWeightPopup
455 super.hide();
486 public void hide() { method in class:PopupFactory.ContainerPopup
632 public void hide() { method in class:PopupFactory.HeadlessPopup
659 popup.hide();
711 public void hide() { method in class:PopupFactory.LightWeightPopup
712 super.hide();
815 popup.hide();
868 public void hide() { method in class:PopupFactory.MediumWeightPopup
[all...]
H A DToolTipManager.java37 * hide. Consider a component that has a different tooltip based on where
371 tipWindow.hide();
398 * This will register key bindings to show and hide the tooltip text
830 private void hide(JComponent source) { method in class:ToolTipManager
851 hide(source);
H A DJInternalFrame.java1765 public void hide() { method in class:JInternalFrame
1769 super.hide();
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsPopupWindow.java80 public void hide() { method in class:WindowsPopupWindow
81 super.hide();
82 /** We need to call removeNotify() here because hide() does
86 * is invisible and causing hide() to do nothing
H A DWindowsLookAndFeel.java1955 * Sets the state of the hide mnemonic flag. This flag is used by the
1960 * @param hide true if mnemonics should be hidden
1963 public static void setMnemonicHidden(boolean hide) { argument
1965 // Do not hide mnemonics if the UI defaults do not support this
1968 isMnemonicHidden = hide;
1973 * Gets the state of the hide mnemonic flag. This only has meaning
1982 // Do not hide mnemonics if the UI defaults do not support this
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDialogPeer.java90 public void hide() { method in class:WDialogPeer
95 super.hide();
H A DWPrintDialogPeer.java74 // not hide is called and the thread doesn't hang.
76 ((WPrintDialog)target).hide();
122 public void hide() {} method in class:WPrintDialogPeer
H A DWFileDialogPeer.java102 public void hide() { method in class:WFileDialogPeer
173 fileDialog.hide();
188 fileDialog.hide();
H A DWWindowPeer.java295 public void hide() { method in class:WWindowPeer
302 super.hide();
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DSheetDialog.java80 ((SlideAndFadeGlassPane)optionPane.getParent()).hide(optionPane);
172 public void hide(SheetOptionPane optionPane) { method in class:SheetDialog.SlideAndFadeGlassPane
245 glassPane.hide(this);
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DEnvHelp.java540 String hide = (String) map.get(HIDDEN_ATTRIBUTES);
541 if (hide != null) {
542 if (hide.startsWith("="))
543 hide = hide.substring(1);
545 hide += " " + DEFAULT_HIDDEN_ATTRIBUTES;
548 parseHiddenAttributes(hide, hiddenStrings, hiddenPrefixes);
550 hide = DEFAULT_HIDDEN_ATTRIBUTES;
553 parseHiddenAttributes(hide,
619 private static void parseHiddenAttributes(String hide, argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuWindow.java421 void hide() { method in class:XMenuWindow
H A DInfoWindow.java100 public void hide() { method in class:InfoWindow
130 InfoWindow.super.hide();
231 hide();
316 hide();
429 // hide the balloon by any click
430 hide();
H A DXEmbedChildProxyPeer.java298 public void hide() { method in class:XEmbedChildProxyPeer
/openjdk7/jdk/src/share/classes/java/awt/
H A DDialog.java288 * the beginning of hide() and to false at the end of hide().
290 * @see #hide()
301 * @see #hide()
1016 * will not return until the dialog is hidden by calling hide or
1020 * @see Component#hide
1177 public void hide() { method in class:Dialog
1179 super.hide();
1180 // fix for 5048370: if hide() is called from super.doDispose(), then
1194 // to hideAndDisposeHandler() from hide()
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJDefinedClass.java708 public void hide() { method in class:JDefinedClass
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEmbeddedFrame.java173 * add listeners in show() and remove them in hide().
186 * add listeners in show() and remove them in hide().
188 public void hide() { method in class:EmbeddedFrame
192 super.hide();
H A DNullComponentPeer.java99 public void hide() { method in class:NullComponentPeer
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java172 public void hide(){}; method in class:StubComponentPeer

Completed in 123 milliseconds

12