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 CollectionStartedEvent extends CollectionEvent 10 { 11 public CollectionStartedEvent(final BasherContext basherContext) 12 { 13 super(basherContext); 14 } 15 }