final JFrame frame = new JFrame("Test ConnectionPropertiesPanel");
SQLAliasConnectionProperties props = new SQLAliasConnectionProperties();
ConnectionPropertiesPanel panel = new ConnectionPropertiesPanel(props);
frame.getContentPane().add(panel);
frame.setSize(500,300);
frame.setVisible(true);