Skip to main content
summaryrefslogtreecommitdiffstats
blob: d4124076b40ae5234ca537c4ab59abbe94cb53ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2000, 2007 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Atsuhiko Yamanaka, JCraft,Inc. - copying this class from o.e.team.cvs.ui plug-in.
 *******************************************************************************/
package org.eclipse.jsch.internal.ui.authenticator;

import org.eclipse.jsch.internal.ui.JSchUIPlugin;

/**
 * Here's how to reference the help context in code:
 *
 * WorkbenchHelp.setHelp(actionOrControl, IHelpContextIds.NAME_DEFIED_BELOW);
 * @since 1.1
 */
public interface IHelpContextIds{

  public static final String PREFIX=JSchUIPlugin.ID+"."; //$NON-NLS-1$

  public static final String KEYBOARD_INTERACTIVE_DIALOG=PREFIX
  +"keyboard_interactive_dialog_context"; //$NON-NLS-1$
  public static final String USER_VALIDATION_DIALOG=PREFIX
  +"user_validation_dialog_context"; //$NON-NLS-1$
}

Back to the top