blob: 1b0be3725d156d933bdd46180150504fa914139d [file] [log] [blame]
/******************************************************************************
* Copyright (c) 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.gmf.runtime.notation.providers.internal.copypaste;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.gmf.runtime.emf.clipboard.core.IClipboardSupport;
import org.eclipse.gmf.runtime.emf.clipboard.core.IClipboardSupportFactory;
/**
* Implementation of the extension point for creating clipboard support
* utilities.
*
* @author Christian W. Damus (cdamus)
*/
public class ClipboardSupportFactory
implements IClipboardSupportFactory {
private final IClipboardSupport clipHelper =
new NotationClipboardOperationHelper();
/**
* Initializes me.
*/
public ClipboardSupportFactory() {
super();
}
/* (non-Javadoc)
* Implements the interface method.
*/
public IClipboardSupport newClipboardSupport(EPackage ePackage) {
return clipHelper;
}
}