se.claremont.taf.websupport.gui.StandaloneWebSupportGui Maven / Gradle / Ivy
The newest version!
package se.claremont.taf.websupport.gui;
import se.claremont.taf.core.gui.guistyle.TafFrame;
import javax.swing.*;
public class StandaloneWebSupportGui {
static TafFrame frame = null;
public static void main(String[] args){
frame = new TafFrame("WebFrame");
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
frame.getContentPane().add(new WebSupportTabPanel().panel);
frame.pack();
frame.setVisible(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy