blob: 7a59f8e4a00874c37f1e9321f77be8b80ec81848 [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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.library.edit;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.eclipse.epf.common.plugin.AbstractPlugin;
import org.eclipse.jface.preference.IPreferenceStore;
/**
* @author Phong Nguyen Le
* @since 1.0
*/
public final class Providers {
private static IConfiguratorFactory configuratorFactory;
private static IConfigurationApplicator configurationApplicator;
private static IPreferenceStore preferenceStore;
private static AbstractPlugin authoringPlugin;
private static Map commandTypeToListenersMap = new HashMap();
private Providers() {
super();
}
public static IConfiguratorFactory getConfiguratorFactory() {
return configuratorFactory;
}
public static void setConfiguratorFactory(
IConfiguratorFactory configuratorFactory) {
Providers.configuratorFactory = configuratorFactory;
}
public static IConfigurationApplicator getConfigurationApplicator() {
return configurationApplicator;
}
public static void setConfigurationApplicator(
IConfigurationApplicator configurationApplicator) {
Providers.configurationApplicator = configurationApplicator;
}
public static IPreferenceStore getPreferenceStore() {
return preferenceStore;
}
public static void setPreferenceStore(IPreferenceStore preferenceStore) {
Providers.preferenceStore = preferenceStore;
}
public static AbstractPlugin getAuthoringPlugin() {
return authoringPlugin;
}
public static void setAuthoringPlugin(AbstractPlugin plugin) {
authoringPlugin = plugin;
}
public static void registerCommandListener(ICommandListener listener) {
List listeners = (List) commandTypeToListenersMap.get(listener
.getCommandType());
if (listeners == null) {
listeners = new ArrayList();
commandTypeToListenersMap.put(listener.getCommandType(), listeners);
} else if (listeners.contains(listener)) {
return;
}
listeners.add(listener);
}
public static void removeCommandListener(ICommandListener listener) {
List listeners = (List) commandTypeToListenersMap.get(listener
.getCommandType());
if (listeners != null) {
listeners.remove(listener);
if (listeners.isEmpty()) {
commandTypeToListenersMap.remove(listener.getCommandType());
}
}
}
public static List getCommandListeners(Class commandType) {
return (List) commandTypeToListenersMap.get(commandType);
}
}