KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > help > internal > base > IHelpBaseConstants


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.help.internal.base;
12 /**
13  * Interface for holding Help UI plug-in constants
14  */

15 public interface IHelpBaseConstants {
16     // Preference ids
17
String JavaDoc P_KEY_WINDOW_INFOPOP = "window_infopop";//$NON-NLS-1$
18
String JavaDoc P_KEY_DIALOG_INFOPOP = "dialog_infopop";//$NON-NLS-1$
19
String JavaDoc P_KEY_OPEN_IN_EDITOR = "open_in_browser"; //$NON-NLS-1$
20
String JavaDoc P_KEY_ALWAYS_EXTERNAL_BROWSER = "always_external_browser"; //$NON-NLS-1$
21
String JavaDoc P_KEY_REMOTE_HELP_ON = "remoteHelpOn"; //$NON-NLS-1$
22
String JavaDoc P_KEY_REMOTE_HELP_HOST = "remoteHelpHost"; //$NON-NLS-1$
23
String JavaDoc P_KEY_REMOTE_HELP_PATH = "remoteHelpPath"; //$NON-NLS-1$
24
String JavaDoc P_KEY_REMOTE_HELP_DEFAULT_PORT = "remoteHelpUseDefaultPort"; //$NON-NLS-1$
25
String JavaDoc P_KEY_REMOTE_HELP_PORT = "remoteHelpPort"; //$NON-NLS-1$
26
String JavaDoc P_KEY_USE_NEW_TOC_VIEW = "newTocView"; //$NON-NLS-1$
27
}
28
Popular Tags