edu.bonn.cs.iv.bonnmotion
Class LinkStatusChange

java.lang.Object
  extended by edu.bonn.cs.iv.bonnmotion.LinkStatusChange

public class LinkStatusChange
extends java.lang.Object

The event of a link going up or down at a certain point in time.


Field Summary
 int dst
          Link destination.
 int src
          Link source.
 double time
          Time of link status change.
 boolean up
          True, if the link is going up, false, if it is going down.
 
Constructor Summary
LinkStatusChange(double time, int src, int dst, boolean up)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

time

public final double time
Time of link status change.


src

public final int src
Link source.


dst

public final int dst
Link destination.


up

public final boolean up
True, if the link is going up, false, if it is going down.

Constructor Detail

LinkStatusChange

public LinkStatusChange(double time,
                        int src,
                        int dst,
                        boolean up)