jdk/src/share/classes/java/awt/event/HierarchyBoundsListener.java
changeset 22254 8550495a4d78
parent 5506 202f599c92aa
equal deleted inserted replaced
22173:f130ca87de66 22254:8550495a4d78
     1 /*
     1 /*
     2  * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 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
    50  * @since       1.3
    50  * @since       1.3
    51  */
    51  */
    52 public interface HierarchyBoundsListener extends EventListener {
    52 public interface HierarchyBoundsListener extends EventListener {
    53     /**
    53     /**
    54      * Called when an ancestor of the source is moved.
    54      * Called when an ancestor of the source is moved.
       
    55      * @param e the event to be processed
    55      */
    56      */
    56     public void ancestorMoved(HierarchyEvent e);
    57     public void ancestorMoved(HierarchyEvent e);
    57 
    58 
    58     /**
    59     /**
    59      * Called when an ancestor of the source is resized.
    60      * Called when an ancestor of the source is resized.
       
    61      * @param e the event to be processed
    60      */
    62      */
    61     public void ancestorResized(HierarchyEvent e);
    63     public void ancestorResized(HierarchyEvent e);
    62 }
    64 }