1 package net.sourceforge.basher.events;
2
3 import net.sourceforge.basher.BasherContext;
4
5 /**
6 * @author Johan Lindquist
7 * @version $Revision$
8 */
9 public class CollectionStoppedEvent extends CollectionEvent
10 {
11 public CollectionStoppedEvent(final BasherContext basherContext)
12 {
13 super(basherContext);
14 }
15 }