All Downloads are FREE. Search and download functionalities are using the official Maven repository.

exp.libs.ui.cpt.win.MainWindow Maven / Gradle / Ivy

package exp.libs.ui.cpt.win;


/**
 * 
 * swing主窗口
 * 
*
PROJECT : exp-libs *
SUPPORT : https://exp-blog.com * @version 2022-03-06 * @author EXP: [email protected] * @since JDK 1.8+ */ @SuppressWarnings("serial") public abstract class MainWindow extends _SwingWindow { protected MainWindow() { super("MainWindow"); } protected MainWindow(String name) { super(name); } protected MainWindow(String name, int width, int height) { super(name, width, height); } protected MainWindow(String name, int width, int height, boolean relative) { super(name, width, height, relative); } protected MainWindow(String name, int width, int height, boolean relative, Object... args) { super(name, width, height, relative, args); } @Override protected final boolean isMainWindow() { return true; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy