1 /*
2 * Replica is published under the terms
3 * of the Apache Software License.
4 */
5 package replica.group.event;
6
7 import java.util.EventObject;
8
9 /***
10 * Super class for all group events.
11 *
12 * @author Pedro Costa
13 * @author Helder Silva
14 * @since 19/Jan/2004
15 */
16 public class GroupEvent extends EventObject{
17
18 /***
19 * @param source
20 */
21 public GroupEvent(Object source) {
22 super(source);
23 }
24
25 }
This page was automatically generated by Maven