KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mountainminds > eclemma > internal > ui > actions > CoverageHistoryAction


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: CoverageHistoryAction.java 12 2006-08-28 20:07:13Z mho $
7  ******************************************************************************/

8 package com.mountainminds.eclemma.internal.ui.actions;
9
10 import org.eclipse.debug.ui.actions.AbstractLaunchHistoryAction;
11
12 import com.mountainminds.eclemma.internal.ui.EclEmmaUIPlugin;
13
14 /**
15  *
16  * @author Marc R. Hoffmann
17  * @version $Revision: 12 $
18  */

19 public class CoverageHistoryAction extends AbstractLaunchHistoryAction {
20
21   public CoverageHistoryAction() {
22     super(EclEmmaUIPlugin.ID_COVERAGE_LAUNCH_GROUP);
23   }
24   
25 }
26
Popular Tags