瀏覽代碼

Small comment changes

Andreas T. Meyer-Berg 6 年之前
父節點
當前提交
a2360690d2
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/core/ConnectionPerformance.java

+ 8 - 0
src/main/java/de/tu_darmstadt/tk/SmartHomeNetworkSim/core/ConnectionPerformance.java

@@ -10,13 +10,21 @@ import java.util.LinkedList;
  */
 public class ConnectionPerformance implements Connection {
 
+	/** Link on which this connection runs */
 	protected Link link;
+	/** Link on which this connection runs */
 	protected LinkedList<Port> participants;
+	/** Link on which this connection runs */
 	protected LinkedList<Port> removedParticipants;
+	/** Link on which this connection runs */
 	protected Protocol protocol;
+	/** Link on which this connection runs */
 	protected double packetLossRate;
+	/** Link on which this connection runs */
 	protected byte status;
+	/** Link on which this connection runs */
 	protected boolean changed = false;
+	/** Link on which this connection runs */
 	protected String name;
 	
 	/**