Index: gnu/testlet/javax/swing/JScrollPane/getActionMap.java =================================================================== RCS file: gnu/testlet/javax/swing/JScrollPane/getActionMap.java diff -N gnu/testlet/javax/swing/JScrollPane/getActionMap.java --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ gnu/testlet/javax/swing/JScrollPane/getActionMap.java 8 Jun 2006 11:09:15 -0000 @@ -0,0 +1,57 @@ +/* getActionMap.java -- some checks for the getActionMap() method in the + JScrollPane class. + Copyright (C) 2006 David Gilbert +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.3 + +package gnu.testlet.javax.swing.JScrollPane; + +import gnu.testlet.TestHarness; +import gnu.testlet.Testlet; + +import javax.swing.Action; +import javax.swing.ActionMap; +import javax.swing.JScrollPane; + +public class getActionMap implements Testlet +{ + public void test(TestHarness harness) + { + // this is the original version of the test - it shows no actions for + // a regular label... + JScrollPane p = new JScrollPane(); + ActionMap m = p.getActionMap(); + harness.check(m.keys(), null); + ActionMap mp = m.getParent(); + harness.check(mp.get("scrollLeft") instanceof Action); + harness.check(mp.get("scrollEnd") instanceof Action); + harness.check(mp.get("unitScrollUp") instanceof Action); + harness.check(mp.get("unitScrollLeft") instanceof Action); + harness.check(mp.get("scrollUp") instanceof Action); + harness.check(mp.get("scrollRight") instanceof Action); + harness.check(mp.get("scrollHome") instanceof Action); + harness.check(mp.get("scrollDown") instanceof Action); + harness.check(mp.get("unitScrollDown") instanceof Action); + harness.check(mp.get("unitScrollRight") instanceof Action); +// for (int i = 0; i < mp.keys().length; i++) +// System.out.println(mp.keys()[i] + ", " + mp.get(mp.keys()[i])); + } +}