Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2013-09-05 18:42:25 +0000
committerThomas Watson2013-09-06 18:33:09 +0000
commitee16ee5520224d7e0604596c01d2737b25bd3449 (patch)
treeb74058feaa9a42ce9fdbbaca693bcb0d376d6912 /bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java
parenteabb2839eb0e820c09446421db6d8301a5f2a7ba (diff)
downloadrt.equinox.framework-ee16ee5520224d7e0604596c01d2737b25bd3449.tar.gz
rt.equinox.framework-ee16ee5520224d7e0604596c01d2737b25bd3449.tar.xz
rt.equinox.framework-ee16ee5520224d7e0604596c01d2737b25bd3449.zip
Consolidate NLS messages.
Diffstat (limited to 'bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java')
-rw-r--r--bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java b/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java
deleted file mode 100644
index f176a6214..000000000
--- a/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/StorageMsg.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2013 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
- *******************************************************************************/
-package org.eclipse.osgi.storage;
-
-import org.eclipse.osgi.util.NLS;
-
-/**
- * Commom framework adaptor messages.
- * <p>
- * Clients may not extend this class
- * </p>
- * @since 3.1
- */
-public class StorageMsg extends NLS {
-
- public static String ADAPTER_FILEEXIST_EXCEPTION;
- public static String ADAPTOR_DIRECTORY_CREATE_EXCEPTION;
- public static String ADAPTOR_DIRECTORY_EXCEPTION;
- public static String ADAPTOR_URL_CREATE_EXCEPTION;
- public static String ADAPTOR_STORAGE_INIT_FAILED_MSG;
- public static String ADAPTOR_STORAGE_INIT_FAILED_TITLE;
- public static String ECLIPSE_STARTUP_FILEMANAGER_OPEN_ERROR;
-
- public static String BUNDLE_CLASSPATH_ENTRY_NOT_FOUND_EXCEPTION;
- public static String BUNDLE_READ_EXCEPTION;
-
- public static String RESOURCE_NOT_FOUND_EXCEPTION;
-
- public static String URL_INVALID_BUNDLE_ID;
- public static String URL_NO_BUNDLE_FOUND;
- public static String URL_NO_BUNDLE_ID;
-
- private static final String BUNDLE_NAME = "org.eclipse.osgi.storage.ExternalMessages"; //$NON-NLS-1$
-
- static {
- // initialize resource bundles
- NLS.initializeMessages(BUNDLE_NAME, StorageMsg.class);
- }
-
-}

Back to the top