KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mountainminds > eclemma > core > launching > ICoverageLaunchConfigurationConstants


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: ICoverageLaunchConfigurationConstants.java 11 2006-08-28 20:06:31Z mho $
7  ******************************************************************************/

8 package com.mountainminds.eclemma.core.launching;
9
10 import com.mountainminds.eclemma.internal.core.EclEmmaCorePlugin;
11
12 /**
13  * Constants for coverage specific launch configuration entries.
14  *
15  * @author Marc R. Hoffmann
16  * @version $Revision: 11 $
17  */

18 public interface ICoverageLaunchConfigurationConstants {
19
20   /**
21    * This boolean attribute specifies, whether class files should be
22    * instrumented in-place. If unspecified inplace instrumentation is not
23    * performed.
24    */

25   public static final String JavaDoc ATTR_INPLACE_INSTRUMENTATION = EclEmmaCorePlugin.ID
26       + ".INPLACE_INSTRUMENTATION"; //$NON-NLS-1$
27

28   /**
29    * List of workspace relative paths for instrumentation. If unspecified all
30    * output locations of source folders will be instrumented.
31    */

32   public static final String JavaDoc ATTR_INSTRUMENTATION_PATHS = EclEmmaCorePlugin.ID
33       + ".INSTRUMENTATION_PATHS"; //$NON-NLS-1$
34

35 }
36
Popular Tags