| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| SetChangedListener |
|
| 1.0;1 |
| 1 | /****************************************************************************** | |
| 2 | * SetChangedListener.java - Receive notifications when a set has changed. | |
| 3 | * | |
| 4 | * PicMan - The BuckoSoft Picture Manager in Java | |
| 5 | * Copyright(c) 2011 - Dick Balaska | |
| 6 | * | |
| 7 | */ | |
| 8 | package com.buckosoft.PicMan.business; | |
| 9 | ||
| 10 | import com.buckosoft.PicMan.domain.SetSize; | |
| 11 | ||
| 12 | /** Interface for an object to receive notifications when a set has changed. | |
| 13 | * @author Dick Balaska | |
| 14 | * @since 2011/12/23 | |
| 15 | * @see <a href="http://cvs.buckosoft.com/Projects/PicMan/PicMan/src/main/java/com/buckosoft/PicMan/business/SetChangedListener.java">SetChangedListener.java</a> | |
| 16 | */ | |
| 17 | public interface SetChangedListener { | |
| 18 | /** This set/size has changed. Perhaps you care. | |
| 19 | * @param ss The Set/Size that changed. | |
| 20 | */ | |
| 21 | void onSetChanged(SetSize ss); | |
| 22 | } |