|
@@ -252,13 +252,13 @@ public class PortEditorPanel extends JPanel
|
|
|
* Test the Panel
|
|
|
*/
|
|
|
private static void testGUI() {
|
|
|
- JFrame frame = new JFrame("SplitPaneDemo");
|
|
|
+ JFrame frame = new JFrame("Port Editor");
|
|
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
SmartDevice test = new SmartDevice("TestDevice");
|
|
|
test.addPort(new Port(test, (short) 1));
|
|
|
test.addPort(new Port(test, (short) 2));
|
|
|
- PortEditorPanel splitPaneDemo = new PortEditorPanel(test);
|
|
|
- frame.getContentPane().add(splitPaneDemo.getSplitPane());
|
|
|
+ PortEditorPanel portEditorPanel = new PortEditorPanel(test);
|
|
|
+ frame.getContentPane().add(portEditorPanel.getSplitPane());
|
|
|
|
|
|
frame.pack();
|
|
|
frame.setVisible(true);
|