KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jface > internal > InternalPolicy


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

11 package org.eclipse.jface.internal;
12
13 import java.util.Map JavaDoc;
14
15 /**
16  * Internal class used for non-API debug flags.
17  *
18  * @since 3.3
19  */

20 public class InternalPolicy {
21
22     /**
23      * (NON-API) A flag to indicate whether reentrant viewer calls should always be
24      * logged. If false, only the first reentrant call will cause a log entry.
25      *
26      * @since 3.3
27      */

28     public static boolean DEBUG_LOG_REENTRANT_VIEWER_CALLS = false;
29
30     /**
31      * (NON-API) Instead of logging current conflicts they can be
32      * held here. If there is a problem, they can be reported then.
33      */

34     public static Map JavaDoc currentConflicts = null;
35 }
36
Popular Tags