package com.onaro.sanscreen.client.view.selection; import java.util.EventListener; /** * The listener that's notified when a object selection value changes. */ public interface ObjectSelectionListener extends EventListener { /** * Called whenever the value of the selection changes. * @param e the event that characterizes the change */ public void selectionChanged(ObjectSelectionEvent event); }