net.sf.javagimmicks.swing.builder.SwingBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gimmicks Show documentation
Show all versions of gimmicks Show documentation
Utility classes, APIs and tools for Java
package net.sf.javagimmicks.swing.builder;
import javax.swing.JPanel;
/**
* The root class for creating a new Swing UI - acutually a special
* {@link PanelBuilder}.
*/
public class SwingBuilder extends PanelBuilder
{
/**
* Creates a new instance with a new internal {@link JPanel}.
*/
public SwingBuilder()
{
super(null, new JPanel());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy