Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8144daf9c9a67b8f5fef1e102326ba6bff0737e7 (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
/*******************************************************************************
 * 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. - Bug 170883
 *******************************************************************************/
package org.eclipse.jsch.internal.ui;

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

	// image path
	public final String ICON_PATH="$nl$/icons/full/"; //$NON-NLS-1$

	// preferences
	public final String PREF_FIRST_STARTUP="pref_first_startup"; //$NON-NLS-1$

	// images
	public final String IMG_KEY_LOCK="wizban/keylock.gif"; //$NON-NLS-1$

}

Back to the top