Hi,
As you've probably guessed by now from previous emails, I'm bored,
there's nothing on TV, so I'm browsing some Classpath source. Once I
can get it to configure and make properly I'll probably concentrate more
on contributing source and fixing bugs than docs, but at least I know
(hope) the docs will compile ok :)
Please find attached the following files:
diff: output of diff <original AWTEventMulticaster.java> <my
AWTEventMulticaster.java>
diff_minus_u: output of diff -u <original
AWTEventMulticaster.java> <my AWTEventMulticaster.java>
Regards,
Ricky.
82c82
< * assume are firing <code>AdjustmentEvent</code>'s. However, this
---
> * assume you are firing <code>AdjustmentEvent</code>s. However, this
98c98
< * <p>When it come time to process an event, simply call <code>al</code>,
---
> * <p>When it comes time to process an event, simply call <code>al</code>,
163c163
< // If a and/or b are Multicaster's, search them recursively.
---
> // If a and/or b are Multicasters, search them recursively.
650c650
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
662c662
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
674c674
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
686c686
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
698c698
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
710c710
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
723c723
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
735c735
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
749c749
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
763c763
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
775c775
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
787c787
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
800c800
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
812c812
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
826c826
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
839c839
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
853c853
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
1087c1087
< * @return latest entry in the chain
---
> * @return the latest entry in the chain
--- classpath/java/awt/AWTEventMulticaster.java 2002-03-31 03:05:37.000000000 +0100
+++ AWTEventMulticaster.java 2003-09-16 19:53:33.000000000 +0100
@@ -79,7 +79,7 @@
* This class is used to implement a chain of event handlers. Dispatching
* using this class is thread safe. Here is a quick example of how to
* add and delete listeners using this class. For this example, we will
- * assume are firing <code>AdjustmentEvent</code>'s. However, this
+ * assume you are firing <code>AdjustmentEvent</code>s. However, this
* same approach is useful for all events in the <code>java.awt.event</code>
* package, and more if this class is subclassed.
*
@@ -95,7 +95,7 @@
* }
* </code>
*
- * <p>When it come time to process an event, simply call <code>al</code>,
+ * <p>When it comes time to process an event, simply call <code>al</code>,
* assuming it is not <code>null</code>, and all listeners in the chain will
* be fired.
*
@@ -160,7 +160,7 @@
return b;
if (b == oldl)
return a;
- // If a and/or b are Multicaster's, search them recursively.
+ // If a and/or b are Multicasters, search them recursively.
if (a instanceof AWTEventMulticaster)
{
EventListener newa = ((AWTEventMulticaster) a).remove(oldl);
@@ -647,7 +647,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static ComponentListener add(ComponentListener a, ComponentListener b)
{
@@ -659,7 +659,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static ContainerListener add(ContainerListener a, ContainerListener b)
{
@@ -671,7 +671,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static FocusListener add(FocusListener a, FocusListener b)
{
@@ -683,7 +683,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static KeyListener add(KeyListener a, KeyListener b)
{
@@ -695,7 +695,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static MouseListener add(MouseListener a, MouseListener b)
{
@@ -707,7 +707,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static MouseMotionListener add(MouseMotionListener a,
MouseMotionListener b)
@@ -720,7 +720,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static WindowListener add(WindowListener a, WindowListener b)
{
@@ -732,7 +732,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
* @since 1.4
*/
public static WindowStateListener add(WindowStateListener a,
@@ -746,7 +746,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
* @since 1.4
*/
public static WindowFocusListener add(WindowFocusListener a,
@@ -760,7 +760,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static ActionListener add(ActionListener a, ActionListener b)
{
@@ -772,7 +772,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static ItemListener add(ItemListener a, ItemListener b)
{
@@ -784,7 +784,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static AdjustmentListener add(AdjustmentListener a,
AdjustmentListener b)
@@ -797,7 +797,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
public static TextListener add(TextListener a, TextListener b)
{
@@ -809,7 +809,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
* @since 1.2
*/
public static InputMethodListener add(InputMethodListener a,
@@ -823,7 +823,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
* @since 1.3
*/
public static HierarchyListener add(HierarchyListener a, HierarchyListener b)
@@ -836,7 +836,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
* @since 1.3
*/
public static HierarchyBoundsListener add(HierarchyBoundsListener a,
@@ -850,7 +850,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
* @since 1.4
*/
public static MouseWheelListener add(MouseWheelListener a,
@@ -1084,7 +1084,7 @@
*
* @param a the "a" listener, may be null
* @param b the "b" listener, may be null
- * @return latest entry in the chain
+ * @return the latest entry in the chain
*/
protected static EventListener addInternal(EventListener a, EventListener b)
{
_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath