01: /*
02: * $RCSfile: CollectionChangeEvent.java,v $
03: *
04: * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
05: *
06: * Use is subject to license terms.
07: *
08: * $Revision: 1.1 $
09: * $Date: 2005/02/11 04:57:05 $
10: * $State: Exp $
11: */
12: package javax.media.jai;
13:
14: import java.util.Collection;
15:
16: /**
17: * Class representing an event generated by a <code>CollectionOp</code>
18: * when the wrapped <code>Collection</code> is regenerated.
19: *
20: * @since JAI 1.1
21: */
22: public class CollectionChangeEvent extends PropertyChangeEventJAI {
23: public CollectionChangeEvent(CollectionOp source,
24: Collection oldValue, Collection newValue) {
25: super (source, "Collection", oldValue, newValue);
26: }
27: }
|