KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > IEnvironmentVariables


1 /*******************************************************************************
2  * Copyright (c) 2000, 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.pde.internal.core;
12
13 public interface IEnvironmentVariables {
14     String JavaDoc OS = "org.eclipse.pde.ui.os"; //$NON-NLS-1$
15
String JavaDoc WS = "org.eclipse.pde.ui.ws"; //$NON-NLS-1$
16
String JavaDoc NL = "org.eclipse.pde.ui.nl"; //$NON-NLS-1$
17
String JavaDoc ARCH = "org.eclipse.pde.ui.arch"; //$NON-NLS-1$
18

19     String JavaDoc OS_EXTRA = "org.eclipse.pde.os.extra"; //$NON-NLS-1$
20
String JavaDoc WS_EXTRA = "org.eclipse.pde.ws.extra"; //$NON-NLS-1$
21
String JavaDoc NL_EXTRA = "org.eclipse.pde.nl.extra"; //$NON-NLS-1$
22
String JavaDoc ARCH_EXTRA = "org.eclipse.pde.arch.extra"; //$NON-NLS-1$
23
}
24
Popular Tags