blob: 183f6ce4c5b09741a7d0734174132bca9f31cef1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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
*******************************************************************************/
/*
* $$RCSfile: RegistryReader.java,v $$
* $$Revision: 1.7 $$ $$Date: 2009/08/11 15:30:32 $$
*/
package org.eclipse.jem.util;
import org.eclipse.core.runtime.*;
import org.osgi.framework.Bundle;
/**
* Class to read a registry. It is meant to be subclassed to provide specific function.
*
* @deprecated Replaced by {@link org.eclipse.wst.common.core.util.RegistryReader)
* @since 1.0.0
*/
public abstract class RegistryReader extends org.eclipse.wst.common.core.util.RegistryReader {
public RegistryReader(String pluginID, String extensionPoint) {
super(pluginID, extensionPoint);
}
/**
* Utility method to get the plugin id of a configuation element
*
* @param configurationElement
* @return plugin id of configuration element
* @deprecated Replaced by (@link org.eclipse.wst.common.core.util.RegistryReader.getPluginId())
* @since 1.0.0
*/
public static String getPluginId(IConfigurationElement configurationElement) {
return org.eclipse.wst.common.core.util.RegistryReader.getPluginId(configurationElement);
}
/**
* Constructor for RegistryReader taking a registry, plugin id, and extension point id.
*
* @param registry
* @param pluginID
* @param extensionPoint
*
* @deprecated Use RegistryReader(plugin, extensionPoint) instead. The registry passed in is ignored.
* @since 1.0.0
*/
public RegistryReader(IPluginRegistry registry, String pluginID, String extensionPoint) {
this(pluginID, extensionPoint);
}
/**
* Tests to see if it is valid at this point in time to create an executable extension. A valid reason not to would be that the workspace is
* shutting donw.
*
* @param element
* @return <code>true</code> if it is valid point to create an executable extension.
*
* @deprecated Replaced by (@link org.eclipse.wst.common.core.util.RegistryReader.canCreateExecutableExtension())
* @since 1.0.0
*/
public static boolean canCreateExecutableExtension(IConfigurationElement element) {
return org.eclipse.wst.common.core.util.RegistryReader.canCreateExecutableExtension(element);
}
/**
* Get the system bundle
*
* @return system bundle.
*
* @since 1.0.0
*/
protected static Bundle getSystemBundle() {
return org.eclipse.wst.common.core.util.RegistryReader.getSystemBundle();
}
}