KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > internal > runtime > IRuntimeConstants


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.runtime;
12
13 public interface IRuntimeConstants {
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 PI_RUNTIME = "org.eclipse.core.runtime"; //$NON-NLS-1$
20

21     /**
22      * Name of this bundle.
23      */

24     public static final String JavaDoc PI_COMMON = "org.eclipse.equinox.common"; //$NON-NLS-1$
25

26     /**
27      * Status code constant (value 2) indicating an error occurred while running a plug-in.
28      */

29     public static final int PLUGIN_ERROR = 2;
30
31     /**
32      * Status code constant (value 5) indicating the platform could not write
33      * some of its metadata.
34      */

35     public static final int FAILED_WRITE_METADATA = 5;
36
37 }
38
Popular Tags