KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mountainminds > eclemma > core > analysis > IJavaCoverageListener


1 /*******************************************************************************
2  * Copyright (c) 2006 Mountainminds GmbH & Co. KG
3  * This software is provided under the terms of the Eclipse Public License v1.0
4  * See http://www.eclipse.org/legal/epl-v10.html.
5  *
6  * $Id: IJavaCoverageListener.java 17 2006-08-28 20:49:08Z mho $
7  ******************************************************************************/

8 package com.mountainminds.eclemma.core.analysis;
9
10 /**
11  * Callback interface implemented by clients that want to be informed, when the
12  * current Java model coverage has changes.
13  *
14  * @author Marc R. Hoffmann
15  * @version $Revision: 17 $
16  */

17 public interface IJavaCoverageListener {
18
19   /**
20    * Called when the current coverage data has changed.
21    */

22   public void coverageChanged();
23   
24 }
25
Popular Tags