Skip to main content
summaryrefslogtreecommitdiffstats
blob: 85726794b09450ba3293c5e401733af86dc2ace4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*******************************************************************************
 * Copyright (c) 2007 IBM Corporation 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:
 *     IBM Corporation - Initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.server.http.ui.internal;
/**
 * Constant ids for context help.
 */
public interface ContextIds {
	public static final String SERVER_EDITOR = HttpUIPlugin.PLUGIN_ID + ".teig0000";
	public static final String RUNTIME_COMPOSITE = HttpUIPlugin.PLUGIN_ID + ".twnr0000";
}

Back to the top