KickJava   Java API By Example, From Geeks To Geeks.

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


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: OpenCoverageConfigurations.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.OpenLaunchDialogAction;
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 OpenCoverageConfigurations extends OpenLaunchDialogAction {
20
21     public OpenCoverageConfigurations() {
22         super(EclEmmaUIPlugin.ID_COVERAGE_LAUNCH_GROUP);
23     }
24   
25 }
26
Popular Tags