blob: ab6cd16f3810cfc7a7d013d8d39d76f838d6148c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.ui.completion;
import org.eclipse.swt.graphics.Image;
public interface IImageResolver {
/**
* Returns an image instance. Only called when the actual image gets displayed.
*
* @return image to be displayed in proposal
*/
Image getImage();
}