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

org.webswing.javafx.toolkit.adaper.JFrameAdapter Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.javafx.toolkit.adaper;

import javax.swing.JFrame;
import javax.swing.JRootPane;
import java.awt.Window;

public class JFrameAdapter extends JFrame implements WindowAdapter {
	public JFrameAdapter(boolean titled) {
		super();
		if (!titled) {
			setUndecorated(true);
			getRootPane().setWindowDecorationStyle(JRootPane.NONE);
		}
	}

	@Override
	public Window getThis() {
		return this;
	}

	@Override
	public void setModal(boolean b) {
		//do nothing
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy