KickJava   Java API By Example, From Geeks To Geeks.

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


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: CoverageContextualLaunchAction.java 384 2007-08-15 20:22:58Z mtnminds $
7  ******************************************************************************/

8 package com.mountainminds.eclemma.internal.ui.actions;
9
10 import org.eclipse.debug.ui.actions.ContextualLaunchAction;
11
12 import com.mountainminds.eclemma.core.CoverageTools;
13
14 /**
15  * An action delegate for the "Coverage As" context menu entry.
16  *
17  * @author Brock Janiczak
18  * @version $Revision: 384 $
19  */

20 public class CoverageContextualLaunchAction extends ContextualLaunchAction {
21   
22   public CoverageContextualLaunchAction() {
23     super(CoverageTools.LAUNCH_MODE);
24   }
25   
26 }
27
Popular Tags