org.beanfabrics.swt.model.IImagePM Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beanfabrics-swt Show documentation
Show all versions of beanfabrics-swt Show documentation
Beanfabrics is a component framework for building Java desktop applications according to the Presentation Model Pattern with Swing.
/*
* Beanfabrics Framework Copyright (C) by Michael Karneim, beanfabrics.org
* Use is subject to license terms. See license.txt.
*/
package org.beanfabrics.swt.model;
import org.beanfabrics.model.IValuePM;
import org.eclipse.swt.graphics.Image;
/**
* @author Michael Karneim
*/
public interface IImagePM extends IValuePM {
public Image getImage();
}