package com.onaro.sanscreen.client.view.selection; import java.util.*; /** * An event telling of a change in an object selection model. */ public class ObjectSelectionEvent extends EventObject { private static final long serialVersionUID = 1L; /** * Constructs an event telling of a change to the selection of objects. * @param sourceModel the selection model where the selection change occured */ public ObjectSelectionEvent(ObjectSelectionModel sourceModel) { super(sourceModel); } }