1 package org.starobjects.wicket.model.common;
2
3 import java.io.Serializable;
4
5 import org.apache.wicket.Component;
6
7 /**
8 * Decouples the mechanism for letting the user acknowledge that no results returned from action
9 * (eg an 'OK' button).
10 */
11 public interface NoResultsHandler extends Serializable {
12
13 void onNoResults(Component context);
14
15 }