Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cfada4f53ecc6ab073608631d759f3f5dc09ae2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

package org.eclipse.papyrus.dev.project.management.handlers.plugins;

import java.util.Map;

import org.eclipse.core.commands.operations.IUndoableOperation;
import org.eclipse.core.resources.IFile;
import org.eclipse.papyrus.dev.project.management.internal.operations.SingletonBundle;
import org.eclipse.papyrus.eclipse.project.editors.interfaces.IManifestEditor;


public class SingletonBundleHandler extends AbstractManifestUpdateHandler {

	public SingletonBundleHandler() {
		super();
	}

	@Override
	protected IUndoableOperation createUpdateOperation(Map<? extends IFile, ? extends IManifestEditor> manifests) {
		return new SingletonBundle(manifests);
	}
}

Back to the top