aboutsummaryrefslogtreecommitdiff
path: root/gnu/testlet/javax/swing/JMenuBar/getInputMap.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/testlet/javax/swing/JMenuBar/getInputMap.java')
-rw-r--r--gnu/testlet/javax/swing/JMenuBar/getInputMap.java72
1 files changed, 72 insertions, 0 deletions
diff --git a/gnu/testlet/javax/swing/JMenuBar/getInputMap.java b/gnu/testlet/javax/swing/JMenuBar/getInputMap.java
new file mode 100644
index 00000000..e6cc7ee3
--- /dev/null
+++ b/gnu/testlet/javax/swing/JMenuBar/getInputMap.java
@@ -0,0 +1,72 @@
+/* getInputMap.java -- some checks for the getInputMap() methods inherited by
+ the JMenuBar class.
+ Copyright (C) 2006 David Gilbert <david.gilbert@object-refinery.com>
+This file is part of Mauve.
+
+Mauve is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+Mauve is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Mauve; see the file COPYING. If not, write to the
+Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+*/
+
+// Tags: JDK1.4
+
+package gnu.testlet.javax.swing.JMenuBar;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.swing.InputMap;
+import javax.swing.JComponent;
+import javax.swing.JMenuBar;
+import javax.swing.KeyStroke;
+
+/**
+ * Checks the input maps defined for a JMenuBar - this is really testing
+ * the setup performed by BasicMenuBarUI.
+ */
+public class getInputMap implements Testlet
+{
+ public void test(TestHarness harness)
+ {
+ testMethod1(harness);
+ testMethod2(harness);
+ }
+
+ public void testMethod1(TestHarness harness)
+ {
+ harness.checkPoint("()");
+ JMenuBar mb = new JMenuBar();
+ InputMap m1 = mb.getInputMap();
+ InputMap m2 = mb.getInputMap(JComponent.WHEN_FOCUSED);
+ harness.check(m1 == m2);
+ }
+
+ public void testMethod2(TestHarness harness)
+ {
+ harness.checkPoint("(int)");
+ JMenuBar mb = new JMenuBar();
+ InputMap m1 = mb.getInputMap(JComponent.WHEN_FOCUSED);
+ harness.check(m1.keys(), null);
+ InputMap m1p = m1.getParent();
+ harness.check(m1p, null);
+ InputMap m2 = mb.getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
+ harness.check(m2.keys(), null);
+ harness.check(m2.getParent(), null);
+ InputMap m3 = mb.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
+ harness.check(m3.keys(), null);
+ InputMap m3p = m3.getParent();
+ harness.check(m3p.get(KeyStroke.getKeyStroke("pressed F10")), "takeFocus");
+ }
+}