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);