summaryrefslogtreecommitdiff
path: root/javax/swing/JPopupMenu.java
diff options
context:
space:
mode:
Diffstat (limited to 'javax/swing/JPopupMenu.java')
-rw-r--r--javax/swing/JPopupMenu.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/javax/swing/JPopupMenu.java b/javax/swing/JPopupMenu.java
index 2e59d4767..1ae8adad0 100644
--- a/javax/swing/JPopupMenu.java
+++ b/javax/swing/JPopupMenu.java
@@ -902,6 +902,20 @@ public class JPopupMenu extends JComponent implements Accessible, MenuElement
}
}
+ /**
+ * Returns <code>true</code> if the component is guaranteed to be painted
+ * on top of others. This returns false by default and is overridden by
+ * components like JMenuItem, JPopupMenu and JToolTip to return true for
+ * added efficiency.
+ *
+ * @return <code>true</code> if the component is guaranteed to be painted
+ * on top of others
+ */
+ boolean onTop()
+ {
+ return true;
+ }
+
protected class AccessibleJPopupMenu extends AccessibleJComponent
{
private static final long serialVersionUID = 7423261328879849768L;