this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) throws Exception {
UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
SwingUtilities.invokeLater(new Runnable() {
public void run() {
new AnimateProgressBar().setVisible(true);
}
});