Selaa lähdekoodia

Adds Functionality to EditLink on the LinkEditorPanel

Andreas T. Meyer-Berg 6 vuotta sitten
vanhempi
commit
c399c54714

+ 5 - 34
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/view/LinkCreationPanel.java

@@ -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);*/
 	}
 
 	

+ 1 - 0
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/view/LinkEditorPanel.java

@@ -70,6 +70,7 @@ public class LinkEditorPanel extends JScrollPane{
 			JButton btnEditLink = new JButton("Edit");
 			btnEditLink.setBounds(160, currentHeight, 80, 18);
 			content.add(btnEditLink);
+			btnEditLink.addActionListener(a -> new LinkCreationDialog(l, controller, this));
 			
 			deviceNames = "Devices: ";
 			if(l.getDevices().isEmpty())

+ 0 - 1
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/view/PortEditorPanel.java

@@ -11,7 +11,6 @@ import java.awt.event.MouseListener;
 import javax.swing.*;
 import javax.swing.event.*;
 
-import junit.framework.TestListener;
 import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.Controller;
 import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.Connection;
 import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.ConnectionImplementation;