public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
* FYI: JComponent.getListeners()
@ 2005-11-23 15:32 David Gilbert
  0 siblings, 0 replies; only message in thread
From: David Gilbert @ 2005-11-23 15:32 UTC (permalink / raw)
  To: mauve-patches

[-- Attachment #1: Type: text/plain, Size: 188 bytes --]

I added some checks for this method:

2005-11-23  David Gilbert  <david.gilbert@object-refinery.com>

    * gnu/testlet/javax/swing/JComponent/getListeners.java: New test.

Regards,

Dave

[-- Attachment #2: diff.txt --]
[-- Type: text/plain, Size: 3192 bytes --]

Index: gnu/testlet/javax/swing/JComponent/getListeners.java
===================================================================
RCS file: gnu/testlet/javax/swing/JComponent/getListeners.java
diff -N gnu/testlet/javax/swing/JComponent/getListeners.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/swing/JComponent/getListeners.java	23 Nov 2005 15:29:47 -0000
@@ -0,0 +1,101 @@
+// Tags: JDK1.3
+
+// Copyright (C) 2005 David Gilbert  <david.gilbert@object-refinery.com>
+
+// 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.
+
+package gnu.testlet.javax.swing.JComponent;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import java.awt.event.ContainerListener;
+import java.awt.event.FocusListener;
+import java.util.EventListener;
+
+import javax.swing.JComponent;
+import javax.swing.event.AncestorEvent;
+import javax.swing.event.AncestorListener;
+
+/**
+ * Some tests for the <code>getListeners(Class)</code> method in the 
+ * {@link JComponent} class.
+ */
+public class getListeners implements Testlet, AncestorListener {
+
+  class TestComponent extends JComponent
+  {
+  }
+
+  /**
+   * Runs the test using the specified harness.
+   * 
+   * @param harness  the test harness (<code>null</code> not permitted).
+   */
+  public void test(TestHarness harness)      
+  {
+    TestComponent c = new TestComponent();
+    c.addAncestorListener(this);
+    EventListener[] listeners = c.getListeners(AncestorListener.class);
+    harness.check(listeners.length, 1);
+    harness.check(listeners[0], this);
+    // try a listener type that isn't registered
+    listeners = c.getListeners(FocusListener.class);
+    harness.check(listeners.length, 0);
+    c.removeAncestorListener(this);
+    listeners = c.getListeners(AncestorListener.class);
+    harness.check(listeners.length, 0);
+    
+    // try a null argument
+    boolean pass = false;
+    try
+    {
+      listeners = c.getListeners(null);
+    }
+    catch (NullPointerException e) 
+    {
+      pass = true;    
+    }
+    harness.check(pass);
+    
+    // try a class that isn't a listener
+    pass = false;
+    try
+    {
+      listeners = c.getListeners(Integer.class);
+    }
+    catch (ClassCastException e) 
+    {
+      pass = true;
+    }
+    harness.check(pass);
+  }
+  
+  public void ancestorMoved(AncestorEvent e)
+  {
+    // ignored
+  }
+
+  public void ancestorAdded(AncestorEvent e)
+  {
+    // ignored
+  }
+  
+  public void ancestorRemoved(AncestorEvent e)
+  {
+    // ignored
+  }
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-11-23 15:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-23 15:32 FYI: JComponent.getListeners() David Gilbert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).