blob: 9d2dc61a5a85e5a0bd45e373ce2a09a62bfbab65 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2005, 2015 IBM Corporation, Ericsson
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM - Initial API and implementation
* Bernd Hufmann - Updated for TMF
**********************************************************************/
package org.eclipse.tracecompass.tmf.ui.views.uml2sd.drawings;
/**
* Interface for handling a image resource.
*
* @version 1.0
* @author sveyrier
*
*/
public interface IImage {
/**
* Returns the contained image. Returned object must be an instance of org.eclipse.swt.graphics.Image if used with
* the org.eclipse.tracecompass.tmf.ui.views.uml2sd.NGC graphical context
*
* @return the color
*/
Object getImage();
/**
* Disposes the image
*/
void dispose();
}