blob: 23125cedc7b9f7dc332ada966f7adfc767ad4e14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package events;
/**
* The interface VSCopyableEvent, all events which implement this class
* are copyable.
*
* @author Paul C. Buetow
*/
public interface VSCopyableEvent {
/**
* Fills a copy of this event with its values
*
* @param copy The copy
*/
public void initCopy(VSAbstractEvent copy);
}
|