Update of /cvsroot/squirrel-sql/sql12/test/jfctests/net/sourceforge/squirrel_sql/client/gui/db
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9352/test/jfctests/net/sourceforge/squirrel_sql/client/gui/db
Added Files:
ColorPropertiesPanelTestUI.java
Log Message:
Feature request: 1656320 (Provide Background Color Configuration); initial check-in.
--- NEW FILE: ColorPropertiesPanelTestUI.java ---
package net.sourceforge.squirrel_sql.client.gui.db;
import javax.swing.JFrame;
import net.sourceforge.squirrel_sql.client.ApplicationArguments;
import net.sourceforge.squirrel_sql.client.gui.db.aliasproperties.ColorPropertiesPanel;
public class ColorPropertiesPanelTestUI {
/**
* @param args
*/
public static void main(String[] args) {
ApplicationArguments.initialize(new String[] {});
final JFrame frame = new JFrame("Test ColorPropertiesPanel");
SQLAliasColorProperties props = new SQLAliasColorProperties();
ColorPropertiesPanel panel = new ColorPropertiesPanel(props);
frame.getContentPane().add(panel);
frame.setSize(500,300);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
|