Searched refs:isShowing (Results 1 - 25 of 68) sorted by relevance

123

/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6199676.java73 private static boolean isShowing(Component component) { method in class:Test6199676
74 return (component != null) && component.isShowing();
90 if (isShowing(this.chooser.getPreviewPanel())) {
100 if (!isShowing(component)) {
/openjdk7/jdk/test/javax/swing/JTextArea/6940863/
H A Dbug6940863.java45 boolean failed = scrollPane.getVerticalScrollBar().isShowing() ||
46 scrollPane.getHorizontalScrollBar().isShowing();
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleComponent.java154 * showing on the screen, use isShowing().
183 public boolean isShowing(); method in interface:AccessibleComponent
/openjdk7/jdk/src/share/classes/javax/swing/
H A DAutoscroller.java141 if (component.isShowing()) {
162 if (component == null || !component.isShowing() || (event == null)) {
H A DKeyboardManager.java249 if ( c.isShowing() && c.isEnabled() ) { // only give it out if enabled and visible
262 if ( c.isShowing() && c.isEnabled() ) { // don't want to give these out
287 if ( mb.isShowing() && mb.isEnabled() ) { // don't want to give these out
H A DMenuSelectionManager.java222 if ((source != null) && !source.isShowing()) {
257 if(!mc.isShowing())
398 if(!mc.isShowing())
445 if (subs[j] == null || !subs[j].getComponent().isShowing()
H A DJOptionPane.java1299 if (dialog.isVisible() && !dialog.isShowing()) {
1330 if (fo != null && fo.isShowing()) {
1444 if (dialog.isVisible() && !dialog.isShowing()) {
1473 if (fo != null && fo.isShowing()) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaRootPaneUI.java64 if (c.isShowing() && c.isEnabled()) {
180 if (root.isShowing() && root.isEnabled()) {
185 if (root.isShowing()) {
222 if ((defaultButton != null) && defaultButton.isShowing()) {
H A DAquaMnemonicHandler.java96 if (w == null || !w.isShowing()) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6520101/
H A Dbug6520101.java87 while (!this.chooser.isShowing()) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DPopupMenu.java178 if (compParent.getPeer() == null || !compParent.isShowing()) {
H A DContainer.java1952 if (isShowing()) {
1984 if (isShowing()) {
2004 if (isShowing()) {
2034 if (isShowing()) {
2056 if (isShowing()) {
2070 if (isShowing()) {
2092 if (isShowing()) {
3893 if ((acmp != null) && (acmp.isShowing())) {
3914 if ((comp != null) && comp.isShowing()) {
4060 if (c.isLightweight() && c.isShowing()) {
[all...]
H A DComponent.java1321 if (!isShowing()) {
1358 * @see #isShowing
1410 public boolean isShowing() { method in class:Component
1413 return (parent == null) || parent.isShowing();
2028 if (peer != null && isShowing()) {
2310 if (parent != null && peer instanceof LightweightPeer && isShowing()) {
3095 * @see #isShowing
3242 if (isShowing()) {
3423 if (isShowing()) {
6451 * @see #isShowing
9409 public boolean isShowing() { method in class:Component.AccessibleAWTComponent
[all...]
/openjdk7/jdk/test/sun/java2d/pipe/hw/VSyncedBufferStrategyTest/
H A DVSyncedBufferStrategyTest.java125 while (!isShowing()) {
131 while (!done && isShowing()) {
146 if (isShowing()) {
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXNETProtocol.java49 if (window.isShowing()) {
211 Boolean.valueOf(window.isMapped()), Boolean.valueOf(window.isShowing()));
212 if (window.isShowing()) {
H A DXWINProtocol.java45 if (window.isShowing()) {
150 if (window.isShowing()) {
H A DXMenuItemPeer.java309 return container.isShowing();
/openjdk7/jdk/test/javax/swing/JComboBox/6607130/
H A Dbug6607130.java123 if (!cb.isShowing()) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6396844/
H A DTwentyThousandTest.java136 while ( !this.chooser.isShowing() ) {
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DJavaAccessibilityUtilities.h57 BOOL isShowing(JNIEnv *env, jobject axContext, jobject component);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c1611 if (wdata->isShowing && awt_wm_needRemap()) {
2041 if (!wdata->isShowing) {
2113 DASSERT(wdata->isShowing);
2171 DASSERT(wdata->isShowing);
2210 DASSERT(!wdata->isShowing);
2353 DASSERT(!wdata->isShowing);
2419 DASSERT(wdata->isShowing);
2455 DASSERT(wdata->isShowing);
2488 DASSERT(!wdata->isShowing);
2568 DASSERT(!wdata->isShowing);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DJTableHeader.java1025 if (isShowing()) {
1291 public boolean isShowing() { method in class:JTableHeader.AccessibleJTableHeader.AccessibleJTableHeaderEntry
1292 if (isVisible() && JTableHeader.this.isShowing()) {
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDropTargetContextPeer.java321 if (c.isShowing() && dt != null && dt.isActive()) {
443 if (c.isShowing() && (dt != null) && dt.isActive()) {
516 if (c.isShowing() && dt != null && dt.isActive()) {
/openjdk7/jdk/src/share/demo/management/MemoryMonitor/
H A DMemoryMonitor.java346 while (thread == me && !isShowing() || getSize().width == 0) {
352 while (thread == me && isShowing()) {
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DComponentView.java455 public boolean isShowing() { method in class:ComponentView.Invalidator

Completed in 93 milliseconds

123