blob: 19aef2cddc3f8ce1a94dcee2bfff2fb12251d63d [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.examples.runtime.emf.clipboard.library;
import org.eclipse.emf.ecore.EPackage;
import org.eclipse.gmf.runtime.emf.clipboard.core.IClipboardSupport;
import org.eclipse.gmf.runtime.emf.clipboard.core.IClipboardSupportFactory;
/**
* Factory to create {@link LibraryClipboardSupport}s.
*/
public class LibraryClipboardSupportFactory
implements IClipboardSupportFactory {
private final IClipboardSupport support = new LibraryClipboardSupport();
/**
* Initializes me.
*/
public LibraryClipboardSupportFactory() {
super();
}
public IClipboardSupport newClipboardSupport(EPackage ePackage) {
// I only register support for the one Library EPackage
return support;
}
}