Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.help/src/org/eclipse/help/internal/HelpResources.java')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/HelpResources.java89
1 files changed, 0 insertions, 89 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/HelpResources.java b/org.eclipse.help/src/org/eclipse/help/internal/HelpResources.java
deleted file mode 100644
index 455d39510..000000000
--- a/org.eclipse.help/src/org/eclipse/help/internal/HelpResources.java
+++ /dev/null
@@ -1,89 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.help.internal;
-
-import java.text.*;
-import java.util.*;
-
-import org.eclipse.core.runtime.*;
-
-/**
- * Uses a resource bundle to load images and strings from a property file.
- */
-public class HelpResources {
- private static ResourceBundle resBundle;
- static {
- resBundle = ResourceBundle.getBundle(HelpResources.class.getName());
- }
- /**
- * Resources constructor.
- */
- public HelpResources() {
- super();
- }
- /**
- * Returns a string from a property file
- */
- public static String getString(String name) {
- try {
- return resBundle.getString(name);
- } catch (Exception e) {
- return name;
- }
-
- }
- /**
- * Returns a string from a property file
- */
- public static String getString(String name, String replace0) {
- try {
- String stringFromPropertiesFile = resBundle.getString(name);
- stringFromPropertiesFile = MessageFormat.format(
- stringFromPropertiesFile, new Object[]{replace0});
- return stringFromPropertiesFile;
- } catch (Exception e) {
- return name;
- }
- }
-
- /**
- * Returns a string from a property file
- */
- public static String getString(String name, String replace0, String replace1) {
- try {
- String stringFromPropertiesFile = resBundle.getString(name);
- stringFromPropertiesFile = MessageFormat.format(
- stringFromPropertiesFile, new Object[]{replace0, replace1});
- return stringFromPropertiesFile;
- } catch (Exception e) {
- return name;
- }
- }
-
- private static Locale getDefaultLocale() {
- String nl = Platform.getNL();
- // sanity test
- if (nl == null)
- return Locale.getDefault();
-
- // break the string into tokens to get the Locale object
- StringTokenizer locales = new StringTokenizer(nl, "_"); //$NON-NLS-1$
- if (locales.countTokens() == 1)
- return new Locale(locales.nextToken(), ""); //$NON-NLS-1$
- else if (locales.countTokens() == 2)
- return new Locale(locales.nextToken(), locales.nextToken());
- else if (locales.countTokens() == 3)
- return new Locale(locales.nextToken(), locales.nextToken(), locales
- .nextToken());
- else
- return Locale.getDefault();
- }
-}

Back to the top