blob: 60aec9461ac541cba3e2a70b29e97f354ddf41c8 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 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.common.ui.util;
/**
* Interface for defining custom data used within clipboard/DND operations by
* the transfer agent <code>CustomDataTransfer</code>
*
* @author Vishy Ramaswamy
*/
public interface ICustomData {
/**
* Retrieves the format type
*
* @return the format type
*/
public String getFormatType();
/**
* Retrieves the data
*
* @return the data as bytes
*/
public byte[] getData();
}