01: /*******************************************************************************
02: * Copyright (c) 2000, 2006 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal.ide.filesystem;
11:
12: import org.eclipse.osgi.util.NLS;
13:
14: /**
15: * FileSystemMessages is the class that handles the messages for the
16: * filesystem support.
17: *
18: */
19: public class FileSystemMessages extends NLS {
20:
21: private static final String BUNDLE_NAME = "org.eclipse.ui.internal.ide.filesystem.messages"; //$NON-NLS-1$
22:
23: static {
24: // load message values from bundle file
25: NLS.initializeMessages(BUNDLE_NAME, FileSystemMessages.class);
26: }
27:
28: /**
29: * The name of the default file system.
30: */
31: public static String DefaultFileSystem_name;
32:
33: /**
34: * The label for file system selection.
35: */
36: public static String FileSystemSelection_title;
37: }
|