KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > ide > filesystem > FileSystemMessages


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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  *******************************************************************************/

11
12 package org.eclipse.ui.internal.ide.filesystem;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17  * FileSystemMessages is the class that handles the messages for the
18  * filesystem support.
19  *
20  */

21 public class FileSystemMessages extends NLS{
22     
23     private static final String JavaDoc BUNDLE_NAME= "org.eclipse.ui.internal.ide.filesystem.messages"; //$NON-NLS-1$
24

25     static {
26         // load message values from bundle file
27
NLS.initializeMessages(BUNDLE_NAME, FileSystemMessages.class);
28     }
29
30
31     /**
32      * The name of the default file system.
33      */

34     public static String JavaDoc DefaultFileSystem_name;
35     
36     /**
37      * The label for file system selection.
38      */

39     public static String JavaDoc FileSystemSelection_title;
40 }
41
Popular Tags