Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1228fe1b5925995c9b046a0a74d2945ad966a81e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/****************************************************************************
 * Copyright (c) 2007 Composent, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Composent, Inc. - initial API and implementation
 *****************************************************************************/
package org.eclipse.ecf.internal.provider;

public interface ECFProviderDebugOptions {

	public static final String DEBUG = ProviderPlugin.PLUGIN_ID + "/debug"; //$NON-NLS-1$

	public static final String EXCEPTIONS_CATCHING = DEBUG + "/exceptions/catching"; //$NON-NLS-1$

	public static final String EXCEPTIONS_THROWING = DEBUG + "/exceptions/throwing"; //$NON-NLS-1$

	public static final String METHODS_ENTERING = DEBUG + "/methods/entering"; //$NON-NLS-1$

	public static final String METHODS_EXITING = DEBUG + "/methods/exiting"; //$NON-NLS-1$

	public static final String SOCONTAINERGMM = DEBUG + "/gmm"; //$NON-NLS-1$

	public static final String CONNECTION = DEBUG + "/connection"; //$NON-NLS-1$

	public static final String CONTAINER = DEBUG + "/container"; //$NON-NLS-1$
	public static final String SHAREDOBJECTWRAPPER = DEBUG + "/sharedobjectwrapper"; //$NON-NLS-1$
	public static final String SHAREDOBJECTCONTEXT = DEBUG + "/sharedobjectcontext"; //$NON-NLS-1$
	public static final String SHAREDOBJECTMANAGER = DEBUG + "/sharedobjectmanager"; //$NON-NLS-1$
	public static final String CONTAINERFACTORY = DEBUG + "/containerfactory"; //$NON-NLS-1$
}

Back to the top