Contribution for Bug352466: [TMF] Implement UML2 Sequence Diagram
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / drawings / IImage.java
1 /**********************************************************************
2 * Copyright (c) 2005, 2006, 2011 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 * $Id: IImage.java,v 1.2 2006/09/20 20:56:27 ewchan Exp $
8 *
9 * Contributors:
10 * IBM - Initial API and implementation
11 * Bernd Hufmann - Updated for TMF
12 **********************************************************************/
13 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.drawings;
14
15 /**
16 * @author sveyrier
17 *
18 */
19 public interface IImage {
20
21 /**
22 * Returns the contained image. Returned object must be an instance of org.eclipse.swt.graphics.Image if used with
23 * the org.eclipse.linuxtools.tmf.ui.views.uml2sd.NGC graphical context
24 *
25 * @return the color
26 */
27 public Object getImage();
28
29 /**
30 * Disposes the image
31 */
32 public void dispose();
33
34 }
This page took 0.030298 seconds and 5 git commands to generate.