jdk/src/share/classes/java/awt/event/ContainerListener.java
changeset 22254 8550495a4d78
parent 20455 f6f9a0c2796b
equal deleted inserted replaced
22173:f130ca87de66 22254:8550495a4d78
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    53  * @since 1.1
    53  * @since 1.1
    54  */
    54  */
    55 public interface ContainerListener extends EventListener {
    55 public interface ContainerListener extends EventListener {
    56     /**
    56     /**
    57      * Invoked when a component has been added to the container.
    57      * Invoked when a component has been added to the container.
       
    58      * @param e the event to be processed
    58      */
    59      */
    59     public void componentAdded(ContainerEvent e);
    60     public void componentAdded(ContainerEvent e);
    60 
    61 
    61     /**
    62     /**
    62      * Invoked when a component has been removed from the container.
    63      * Invoked when a component has been removed from the container.
       
    64      * @param e the event to be processed
    63      */
    65      */
    64     public void componentRemoved(ContainerEvent e);
    66     public void componentRemoved(ContainerEvent e);
    65 
    67 
    66 }
    68 }