blob: a371c9e4c52bc3e9ce861a448532c6ce0420339f [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 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 API and implementation
****************************************************************************/
package org.eclipse.gmf.runtime.emf.clipboard.core.internal;
import java.util.Collection;
/**
* A data structure that holds info needed through the copy process
*
* @author Yasser Lulu
*/
public class CopyObjects extends
org.eclipse.gmf.runtime.emf.clipboard.core.CopyObjects {
/**
* Initializes me with my original objects.
*
* @param originalObjects
* the objects originally selected for copying
*/
public CopyObjects(Collection originalObjects) {
super(originalObjects);
}
}