Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cffb10e740d2a9ced53c607afdf7e022089682a0 (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
/*******************************************************************************
 * Copyright (c) 2000, 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.
 *     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