--- 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 AdjustmentEvent's. However, this + * assume you are firing AdjustmentEvents. However, this * same approach is useful for all events in the java.awt.event * package, and more if this class is subclassed. * @@ -95,7 +95,7 @@ * } * * - *

When it come time to process an event, simply call al, + *

When it comes time to process an event, simply call al, * assuming it is not null, 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) {