KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > junit > ui > IJUnitPreferencesConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.junit.ui;
12
13 /**
14  * Defines constants which are used to refer to values in the plugin's preference store.
15  */

16 public interface IJUnitPreferencesConstants {
17     /**
18      * Boolean preference controlling whether the failure stack should be
19      * filtered.
20      */

21     public static String JavaDoc DO_FILTER_STACK= JUnitPlugin.PLUGIN_ID + ".do_filter_stack"; //$NON-NLS-1$
22

23     /**
24      * Boolean preference controlling whether the JUnit view should be shown on
25      * errors only.
26      */

27     public static String JavaDoc SHOW_ON_ERROR_ONLY= JUnitPlugin.PLUGIN_ID + ".show_on_error"; //$NON-NLS-1$
28

29     /**
30      * List of active stack filters. A String containing a comma separated list
31      * of fully qualified type names/patterns.
32      */

33     public static final String JavaDoc PREF_ACTIVE_FILTERS_LIST = JUnitPlugin.PLUGIN_ID + ".active_filters"; //$NON-NLS-1$
34

35     /**
36      * List of inactive stack filters. A String containing a comma separated
37      * list of fully qualified type names/patterns.
38      */

39     public static final String JavaDoc PREF_INACTIVE_FILTERS_LIST = JUnitPlugin.PLUGIN_ID + ".inactive_filters"; //$NON-NLS-1$
40

41 }
42
Popular Tags