1 /******************************************************************************* 2 * Copyright (c) 2000, 2007 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 * Atsuhiko Yamanaka, JCraft,Inc. - Bug 170883 11 *******************************************************************************/ 12 package org.eclipse.jsch.internal.ui; 13 14 public interface IUIConstants{ 15 public final String PREFIX=JSchUIPlugin.ID+"."; //$NON-NLS-1$ 16 17 // image path 18 public final String ICON_PATH="$nl$/icons/full/"; //$NON-NLS-1$ 19 20 // preferences 21 public final String PREF_FIRST_STARTUP="pref_first_startup"; //$NON-NLS-1$ 22 23 // images 24 public final String IMG_KEY_LOCK="wizban/keylock.gif"; //$NON-NLS-1$ 25 26 } 27