/*
 * Created on May 19, 2003
 *
 * To change this generated comment go to 
 * Window>Preferences>Java>Code Generation>Code Template
 */
package jdraw.framework;

import java.util.Set;

/**
 * 
 * @author Christoph
 * May 19, 2003
 */
public interface Clipboard {

	/**
	 * Get the selection and cut it to the clipboard
	 */
	public void cut(Set selection, DrawModel model);
	
	/**
	 * Copy the selection to the clipboard
	 */
	public void copy(Set selection);
	
	/**
	 * Paste selection to given Model
	 */
	public void paste(DrawModel model);
}
