
org.beanfabrics.model.IIconPM Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beanfabrics-core Show documentation
Show all versions of beanfabrics-core 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.model;
import javax.swing.Icon;
/**
* The {@link IconPM} is an interface for {@link PresentationModel} classes that
* contain a Swing {@link Icon}.
*
* Please Note: this class will be moved to the
* org.beanfabrics.swing.model package soon.
*
* @author Michael Karneim
*/
public interface IIconPM extends IValuePM {
/**
* Returns the {@link Icon} value of this PM.
*
* @return the {@link Icon} value of this PM
*/
public Icon getIcon();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy