blob: eff986d4d7b21215baa3d190842e66a2190680d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 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.ui.internal.registry;
import java.util.HashMap;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.util.Assert;
import org.eclipse.ui.dialogs.IWorkingSetPage;
/**
* Stores working set descriptors for working set extensions.
*/
public class WorkingSetRegistry {
// used in Workbench plugin.xml for default workingSet extension
// @issue this is an IDE specific working set page!
private static final String DEFAULT_PAGE_ID = "org.eclipse.ui.resourceWorkingSetPage"; //$NON-NLS-1$
private HashMap workingSetDescriptors = new HashMap();
/**
* Adds a working set descriptor.
*
* @param descriptor working set descriptor to add. Must not
* exist in the registry yet.
*/
public void addWorkingSetDescriptor(WorkingSetDescriptor descriptor) {
Assert.isTrue(!workingSetDescriptors.containsValue(descriptor), "working set descriptor already registered"); //$NON-NLS-1$
workingSetDescriptors.put(descriptor.getId(), descriptor);
}
/**
* Returns the default, resource based, working set page
*
* @return the default working set page.
*/
public IWorkingSetPage getDefaultWorkingSetPage() {
// @issue this will return the IDE resource working set page... not good for generic workbench
WorkingSetDescriptor descriptor = (WorkingSetDescriptor) workingSetDescriptors.get(DEFAULT_PAGE_ID);
if (descriptor != null) {
return descriptor.createWorkingSetPage();
}
return null;
}
/**
* Returns the working set descriptor with the given id.
*
* @param pageId working set page id
* @return the working set descriptor with the given id.
*/
public WorkingSetDescriptor getWorkingSetDescriptor(String pageId) {
return (WorkingSetDescriptor) workingSetDescriptors.get(pageId);
}
/**
* Returns an array of all working set descriptors.
*
* @return an array of all working set descriptors.
*/
public WorkingSetDescriptor[] getWorkingSetDescriptors() {
return (WorkingSetDescriptor[]) workingSetDescriptors.values().toArray(new WorkingSetDescriptor[workingSetDescriptors.size()]);
}
/**
* Returns the working set page with the given id.
*
* @param pageId working set page id
* @return the working set page with the given id.
*/
public IWorkingSetPage getWorkingSetPage(String pageId) {
WorkingSetDescriptor descriptor = (WorkingSetDescriptor) workingSetDescriptors.get(pageId);
if (descriptor == null) {
return null;
}
return descriptor.createWorkingSetPage();
}
/**
* Loads the working set registry.
*/
public void load() {
WorkingSetRegistryReader reader = new WorkingSetRegistryReader();
reader.readWorkingSets(Platform.getExtensionRegistry(), this);
}
//for dynamic UI
public void removeWorkingSetDescriptor(String id) {
workingSetDescriptors.remove(id);
}
}