KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > internal > registry > IRegistryConstants


1 /*******************************************************************************
2  * Copyright (c) 2005, 2006 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.core.internal.registry;
12
13 public interface IRegistryConstants {
14
15     /**
16      * The unique identifier constant (value "<code>org.eclipse.core.runtime</code>")
17      * of the Core Runtime (pseudo-) plug-in.
18      */

19     public static final String JavaDoc RUNTIME_NAME = "org.eclipse.core.runtime"; //$NON-NLS-1$
20

21     // command line options
22
public static final String JavaDoc NO_REGISTRY_CACHE = "-noregistrycache"; //$NON-NLS-1$
23
public static final String JavaDoc NO_LAZY_REGISTRY_CACHE_LOADING = "-noLazyRegistryCacheLoading"; //$NON-NLS-1$
24

25     // System options
26
public static final String JavaDoc PROP_NO_LAZY_CACHE_LOADING = "eclipse.noLazyRegistryCacheLoading"; //$NON-NLS-1$
27
public static final String JavaDoc PROP_CHECK_CONFIG = "osgi.checkConfiguration"; //$NON-NLS-1$
28
public static final String JavaDoc PROP_NO_REGISTRY_CACHE = "eclipse.noRegistryCache"; //$NON-NLS-1$
29
public static final String JavaDoc PROP_DEFAULT_REGISTRY = "eclipse.createRegistry"; //$NON-NLS-1$
30
public static final String JavaDoc PROP_REGISTRY_NULL_USER_TOKEN = "eclipse.registry.nulltoken"; //$NON-NLS-1$
31

32     // OSGI system properties
33
public static final String JavaDoc PROP_NL = "osgi.nl"; //$NON-NLS-1$
34
public static final String JavaDoc PROP_OS = "osgi.os"; //$NON-NLS-1$
35
public static final String JavaDoc PROP_WS = "osgi.ws"; //$NON-NLS-1$
36

37     /**
38      * Specific error code supplied to the Status objects
39      */

40     static final int PLUGIN_ERROR = 1;
41 }
42
Popular Tags