Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/bundles/org.eclipse.jst.ws.uddiregistry/src/org/eclipse/jst/ws/internal/uddiregistry/plugin/WebServiceUDDIRegistryPlugin.java')
-rw-r--r--core/bundles/org.eclipse.jst.ws.uddiregistry/src/org/eclipse/jst/ws/internal/uddiregistry/plugin/WebServiceUDDIRegistryPlugin.java101
1 files changed, 101 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.jst.ws.uddiregistry/src/org/eclipse/jst/ws/internal/uddiregistry/plugin/WebServiceUDDIRegistryPlugin.java b/core/bundles/org.eclipse.jst.ws.uddiregistry/src/org/eclipse/jst/ws/internal/uddiregistry/plugin/WebServiceUDDIRegistryPlugin.java
new file mode 100644
index 000000000..b687a1553
--- /dev/null
+++ b/core/bundles/org.eclipse.jst.ws.uddiregistry/src/org/eclipse/jst/ws/internal/uddiregistry/plugin/WebServiceUDDIRegistryPlugin.java
@@ -0,0 +1,101 @@
+/*******************************************************************************
+ * Copyright (c) 2002, 2005 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.jst.ws.internal.uddiregistry.plugin;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.text.MessageFormat;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.core.runtime.Plugin;
+import org.eclipse.jface.resource.ImageDescriptor;
+
+/**
+* This is the plugin class for the Web Services UDDI Registry plugin.
+* <p>
+* The Web Services UDDI Registry plugin's is to add the
+* option to create a unit test UDDI registry
+*/
+public class WebServiceUDDIRegistryPlugin extends Plugin
+{
+ // Copyright
+ public static final String copyright = "(c) Copyright IBM Corporation 2002.";
+ /**
+ * The identifier of the descriptor of this plugin in plugin.xml.
+ */
+ public static final String ID = "org.eclipse.jst.ws.uddiregistry";
+
+ /**
+ * The reference to the singleton instance of this plugin.
+ */
+ private static WebServiceUDDIRegistryPlugin instance_;
+
+ /**
+ * Constructs a runtime plugin object for this plugin.
+ */
+ public WebServiceUDDIRegistryPlugin ()
+ {
+ super();
+ instance_ = this;
+ }
+
+ /**
+ * Returns the singleton instance of this plugin. Equivalent to calling
+ * (WebServiceUDDIRegistryPlugin)Platform.getPlugin("org.eclipse.jst.ws.uddiregistry");
+ * @return The WebServiceUDDIRegistryPlugin singleton.
+ */
+ public static WebServiceUDDIRegistryPlugin getInstance ()
+ {
+ return instance_;
+ }
+
+ /**
+ * Returns an image descriptor for the named resource
+ * as relative to the plugin install location.
+ * @return An image descriptor, possibly null.
+ */
+ public static ImageDescriptor getImageDescriptor ( String name )
+ {
+ try
+ {
+ URL installURL = instance_.getBundle().getEntry("/");
+ URL imageURL = new URL(installURL,name);
+ return ImageDescriptor.createFromURL(imageURL);
+ }
+ catch (MalformedURLException e)
+ {
+ return null;
+ }
+ }
+
+ /**
+ * Returns the message string identified by the given key from
+ * plugin.properties.
+ * @return The String message.
+ */
+ public static String getMessage ( String key )
+ {
+ return Platform.getResourceString(instance_.getBundle(),key);
+ }
+
+ /**
+ * Returns the message string identified by the given key from
+ * plugin.properties. Substitution sequences in the message string
+ * are replaced by the given array of substitution objects (which
+ * are most frequently strings). See the JDK's
+ * {@link java.text.MessageFormat java.text.MessageFormat}
+ * class for further details on substitution.
+ * @return The String message.
+ */
+ public static String getMessage ( String key, Object[] args )
+ {
+ return MessageFormat.format(getMessage(key),args);
+ }
+}

Back to the top