|
@@ -40,7 +40,11 @@ public class LinkCreationPanel extends JScrollPane{
|
|
|
public LinkCreationPanel(Link link, Controller controller) {
|
|
|
this.controller = controller;
|
|
|
newLink = link;
|
|
|
- devices = (SmartDevice[]) link.getDevices().toArray();
|
|
|
+ this.devices = new SmartDevice[link.getDevices().size()];
|
|
|
+ int i=0;
|
|
|
+ for(SmartDevice d: link.getDevices()){
|
|
|
+ this.devices[i++] = d;
|
|
|
+ }
|
|
|
edit = true;
|
|
|
initializePanel();
|
|
|
}
|
|
@@ -157,39 +161,6 @@ public class LinkCreationPanel extends JScrollPane{
|
|
|
});
|
|
|
currentHeight += 20;
|
|
|
}
|
|
|
- /*
|
|
|
- JLabel lblDeviceA = new JLabel("DeviceA:");
|
|
|
- lblDeviceA.setHorizontalAlignment(SwingConstants.RIGHT);
|
|
|
- lblDeviceA.setBounds(12, 141, 138, 16);
|
|
|
- content.add(lblDeviceA);
|
|
|
-
|
|
|
- JLabel lblDeviceb = new JLabel("DeviceB:");
|
|
|
- lblDeviceb.setHorizontalAlignment(SwingConstants.RIGHT);
|
|
|
- lblDeviceb.setBounds(12, 170, 138, 16);
|
|
|
- content.add(lblDeviceb);
|
|
|
-
|
|
|
- JLabel lblDeviceC = new JLabel("DeviceC:");
|
|
|
- lblDeviceC.setHorizontalAlignment(SwingConstants.RIGHT);
|
|
|
- lblDeviceC.setBounds(12, 199, 138, 16);
|
|
|
- content.add(lblDeviceC);
|
|
|
-
|
|
|
- JComboBox<String> cmbDev1 = new JComboBox<String>();
|
|
|
- cmbDev1.addItem("Connected");
|
|
|
- cmbDev1.addItem("Disconnected");
|
|
|
- cmbDev1.setBounds(162, 138, 165, 22);
|
|
|
- content.add(cmbDev1);
|
|
|
-
|
|
|
- JComboBox<String> cmbDev2 = new JComboBox<String>();
|
|
|
- cmbDev1.addItem("Connected");
|
|
|
- cmbDev1.addItem("Disconnected");
|
|
|
- cmbDev2.setBounds(162, 167, 165, 22);
|
|
|
- content.add(cmbDev2);
|
|
|
-
|
|
|
- JComboBox<String> cmbDev3 = new JComboBox<String>();
|
|
|
- cmbDev1.addItem("Connected");
|
|
|
- cmbDev1.addItem("Disconnected");
|
|
|
- cmbDev3.setBounds(162, 196, 165, 22);
|
|
|
- content.add(cmbDev3);*/
|
|
|
}
|
|
|
|
|
|
|