|
@@ -39,7 +39,7 @@ public class SimpleConnection implements Connection {
|
|
|
* SmartDevice(Port) which started the termination process
|
|
|
*/
|
|
|
private Port srcOfTermination;
|
|
|
- /* *
|
|
|
+ /* *is connection uses
|
|
|
* SmartDevice which responds in the termination process
|
|
|
*/
|
|
|
// private SmartDevice other;
|
|
@@ -70,7 +70,7 @@ public class SimpleConnection implements Connection {
|
|
|
* @param dest
|
|
|
* Port which is the destination of this connection
|
|
|
* @param link
|
|
|
- * Link which connects {@code src} and {@code dest}
|
|
|
+ * Link which connects is connection uses{@code src} and {@code dest}
|
|
|
* @param p
|
|
|
* Protocol, which specifies the packet generation
|
|
|
*/
|
|
@@ -86,6 +86,11 @@ public class SimpleConnection implements Connection {
|
|
|
public Link getLink() {
|
|
|
return link;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setLink(Link link){
|
|
|
+ this.link = link;
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
public Collection<Packet> simulateTimeInterval(long startTime, long duration) {
|