src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/FieldObserver.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    23 
    23 
    24 /**
    24 /**
    25  * Imnplement this interface if you're interested in changes to a FieldGen object
    25  * Imnplement this interface if you're interested in changes to a FieldGen object
    26  * and register yourself with addObserver().
    26  * and register yourself with addObserver().
    27  *
    27  *
    28  * @version $Id: FieldObserver.java 1747278 2016-06-07 17:28:43Z britter $
    28  * @version $Id$
    29  */
    29  */
    30 public interface FieldObserver {
    30 public interface FieldObserver {
    31 
    31 
    32     void notify( FieldGen field );
    32     void notify( FieldGen field );
    33 }
    33 }