KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jsch > internal > core > Messages


1 /**********************************************************************
2  * Copyright (c) 2007 IBM Corporation and others. All rights reserved. This
3  * program and the accompanying materials are made available under the terms of
4  * the Eclipse Public License v1.0 which accompanies this distribution, and is
5  * available at http://www.eclipse.org/legal/epl-v10.html
6  *
7  * Contributors:
8  * IBM - Initial API and implementation
9  **********************************************************************/

10 package org.eclipse.jsch.internal.core;
11
12 import org.eclipse.osgi.util.NLS;
13
14 public class Messages extends NLS{
15   private static final String JavaDoc BUNDLE_NAME="org.eclipse.jsch.internal.core.messages";//$NON-NLS-1$
16

17   public static String JavaDoc JSchSession_5;
18   public static String JavaDoc Util_timeout;
19   public static String JavaDoc JSchAuthenticationException_detail;
20   public static String JavaDoc JSchRepositoryLocation_locationForm;
21   public static String JavaDoc JSchRepositoryLocation_invalidFormat;
22   public static String JavaDoc KnownRepositories_0;
23   public static String JavaDoc JSchRepositoryLocation_73;
24   public static String JavaDoc JSchRepositoryLocation_74;
25   public static String JavaDoc JSchRepositoryLocation_75;
26   
27   static{
28     // load message values from bundle file
29
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
30   }
31 }
Popular Tags