Uses of Interface
be.ac.ulg.montefiore.run.totem.domain.model.Link

Packages that use Link
be.ac.ucl.ingi.totem.repository   
be.ac.ulg.montefiore.run.totem.domain.model This package holds the model for the domain package. 
be.ac.ulg.montefiore.run.totem.domain.model.impl This package holds classes which are the implementation of the model for the domain package. 
be.ac.ulg.montefiore.run.totem.repository.CSPF This package holds CSPF-related classes (various implementations of the CSPF algorithm is available). 
be.ac.ulg.montefiore.run.totem.repository.DAMOTE This package holds DAMOTE-related classes. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.model This package holds the model for the trafficMatrix package. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl This package holds the implementation of the model for the trafficMatrix package. 
be.ac.ulg.montefiore.run.totem.visualtopo.graph   
be.ac.ulg.montefiore.run.totem.visualtopo.guiComponents   
be.ac.ulg.montefiore.run.totem.visualtopo.guiComponents.domainTables   
be.ac.ulg.montefiore.run.totem.visualtopo.guiModules.whatIfScenarios.model.action.impl   
it.unina.repository.MIRA   
nl.tudelft.repository.XAMCRA   
 

Uses of Link in be.ac.ucl.ingi.totem.repository
 

Methods in be.ac.ucl.ingi.totem.repository with parameters of type Link
 void CBGPChangeListener.addLinkEvent(Link link)
          Notify a add link event
 void CBGPChangeListener.linkBandwidthChangeEvent(Link link)
          Notify a link bandwidth change event
 void CBGPChangeListener.linkDelayChangeEvent(Link link)
          Notify a link delay change event
 void CBGPChangeListener.linkMetricChangeEvent(Link link)
          Notify a link metric change event
 void CBGPChangeListener.linkReservedBandwidthChangeEvent(Link link)
          Notify a link reserved bandwidth change event
 void CBGPChangeListener.linkStatusChangeEvent(Link link)
          Notify a link status change event
 void CBGPChangeListener.linkTeMetricChangeEvent(Link link)
          Notify a link TE metric change event
 void CBGPChangeListener.removeLinkEvent(Link link)
          Notify a remove link event
 

Uses of Link in be.ac.ulg.montefiore.run.totem.domain.model
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model that return Link
 Link Domain.getLink(java.lang.String id)
          Return the link with the specified id
 Link Domain.getLinkBetweenNodes(java.lang.String srcNodeId, java.lang.String srcIfId, java.lang.String dstNodeId, java.lang.String dstIfId)
          Returns the link between srcNode and dstNode and using the specified interfaces.
 Link Domain.getLinkFrom(java.lang.String nodeId, java.lang.String nodeInterfaceId)
          Returns the link connecting the given interface on the given source node.
 Link Domain.getLinkTo(java.lang.String nodeId, java.lang.String nodeInterfaceId)
          Returns the link connecting the given interface on the given destination node.
 Link Domain.getReverseLink(Link link)
          Returns the reverse link for link link.
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model that return types with arguments of type Link
 java.util.List<Link> Node.getAllInLink()
          Return the list of the links that ends at this node.
 java.util.List<Link> Domain.getAllLinks()
          Return a list of all links and a empty list if there is no links.
 java.util.List<Link> Node.getAllOutLink()
          Return the list of the links that begins at this node.
 java.util.List<Link> Node.getInLink()
          Return the list of the links that ends at this node and for which status is UP.
 java.util.List<Link> Path.getLinkPath()
          Get the path as a List of Link
 java.util.List<Link> Domain.getLinksBetweenNodes(Node srcNode, Node dstNode)
          Get the list of the UP links between srcNode and dstNode and a empty list if there is no links.
 java.util.List<Link> Domain.getLinksBetweenNodes(java.lang.String srcNodeId, java.lang.String dstNodeId)
          Get the list of the UP links between srcNode and dstNode and a empty list if there is no links.
 java.util.List<Link> Node.getOutLink()
          Return the list of the links that begins at this node and for which status is UP.
 java.util.List<Link> Lsp.getProtectedLinks()
           
 java.util.List<Link> Domain.getReverseLinks(Link link)
          Returns the list of reverse links for link link.
 java.util.List<Link> Domain.getReverseLinks(java.lang.String linkId)
          Returns the list of reverse links for link linkId.
 java.util.List<Link> Domain.getUpLinks()
          Get all the up links
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model with parameters of type Link
 void Domain.addLink(Link link)
          Add a link to the domain
 void SwitchingMethod.addLinkEvent(Link link)
           
 void DomainChangeListener.addLinkEvent(Link link)
          Notify a add link event
 void DomainChangeAdapter.addLinkEvent(Link link)
          Notify a add link event
 boolean Path.containsLink(Link link)
          Return true if the path contains the link Link
 java.util.List<Lsp> Domain.getLspsOnLink(Link link)
          Get all the LSPs that use the link
 float BandwidthManagement.getReservableBandwidth(int priority, Link link, java.util.Set<Link> protectedLinks)
          Returns the maximum reservable bandwidth at priority level priority for a lsp traversing the link link.
 Link Domain.getReverseLink(Link link)
          Returns the reverse link for link link.
 java.util.List<Link> Domain.getReverseLinks(Link link)
          Returns the list of reverse links for link link.
 void SwitchingMethod.linkBandwidthChangeEvent(Link link)
           
 void DomainChangeListener.linkBandwidthChangeEvent(Link link)
          Notify a link bandwidth change event
 void DomainChangeAdapter.linkBandwidthChangeEvent(Link link)
          Notify a link bandwidth change event
 void SwitchingMethod.linkDelayChangeEvent(Link link)
           
 void DomainChangeListener.linkDelayChangeEvent(Link link)
          Notify a link delay change event
 void DomainChangeAdapter.linkDelayChangeEvent(Link link)
          Notify a link delay change event
 void Lsp.linkDownEvent(Link link)
          A link came down on the lsp path.
 void SwitchingMethod.linkMetricChangeEvent(Link link)
           
 void DomainChangeListener.linkMetricChangeEvent(Link link)
          Notify a link metric change event
 void DomainChangeAdapter.linkMetricChangeEvent(Link link)
          Notify a link metric change event
 void SwitchingMethod.linkReservedBandwidthChangeEvent(Link link)
           
 void DomainChangeListener.linkReservedBandwidthChangeEvent(Link link)
          Notify a link reserved bandwidth change event
 void DomainChangeAdapter.linkReservedBandwidthChangeEvent(Link link)
          Notify a link reserved bandwidth change event
 void DomainChangeListener.linkStatusChangeEvent(Link link)
          Notify a link status change event
 void DomainChangeAdapter.linkStatusChangeEvent(Link link)
          Notify a link status change event
 void SwitchingMethod.linkTeMetricChangeEvent(Link link)
           
 void DomainChangeListener.linkTeMetricChangeEvent(Link link)
          Notify a link TE metric change event
 void DomainChangeAdapter.linkTeMetricChangeEvent(Link link)
          Notify a link TE metric change event
 void Lsp.linkUpEvent(Link link)
          A link came up on the lsp path.
 void DomainChangeObserver.notifyAddLink(Link link)
          Notify link add
 void DomainChangeObserver.notifyLinkBandwidthChange(Link link)
          Notify link bandwidth change
 void DomainChangeObserver.notifyLinkDelayChange(Link link)
          Notify link delay change
 void DomainChangeObserver.notifyLinkMetricChange(Link link)
          Notify link metric change
 void DomainChangeObserver.notifyLinkReservedBandwidthChange(Link link)
          Notify link reserved bandwidth change
 void DomainChangeObserver.notifyLinkStatusChange(Link link)
          Notify link status change
 void DomainChangeObserver.notifyLinkTeMetricChange(Link link)
          Notify link TE metric change
 void DomainChangeObserver.notifyRemoveLink(Link link)
          Notify link remove
 void BandwidthManagement.recomputeRbw(Link link)
          Recompute the reservable bandwidth (rbw array) of the link link.
Warning: all rbw values should be set to 0 before calling this method.
 void Domain.removeLink(Link link)
          Remove a link from the domain.
 void SwitchingMethod.removeLinkEvent(Link link)
           
 void DomainChangeListener.removeLinkEvent(Link link)
          Notify a remove link event
 void DomainChangeAdapter.removeLinkEvent(Link link)
          Notify a remove link event
 

Method parameters in be.ac.ulg.montefiore.run.totem.domain.model with type arguments of type Link
 void Path.createPathFromLink(java.util.List<Link> path)
          Create a Path from a list of Link
 float BandwidthManagement.getReservableBandwidth(int priority, Link link, java.util.Set<Link> protectedLinks)
          Returns the maximum reservable bandwidth at priority level priority for a lsp traversing the link link.
 

Uses of Link in be.ac.ulg.montefiore.run.totem.domain.model.impl
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model.impl that return Link
 Link DomainImpl.getLink(java.lang.String id)
          Return the link with the specified id
 Link DomainImpl.getLinkBetweenNodes(java.lang.String srcNodeId, java.lang.String srcIfId, java.lang.String dstNodeId, java.lang.String dstIfId)
          Returns the link between srcNode and dstNode and using the specified interfaces.
 Link DomainImpl.getLinkFrom(java.lang.String nodeId, java.lang.String nodeInterfaceId)
          Returns the link connecting the given interface on the given source node.
 Link DomainImpl.getLinkTo(java.lang.String nodeId, java.lang.String nodeInterfaceId)
          Returns the link connecting the given interface on the given destination node.
 Link DomainImpl.getReverseLink(Link link)
          Returns the reverse link for link link.
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model.impl that return types with arguments of type Link
 java.util.List<Link> NodeImpl.getAllInLink()
          Return the list of the links that ends at this node.
 java.util.List<Link> DomainImpl.getAllLinks()
          Return a list of all links and a empty list if there is no links.
 java.util.List<Link> NodeImpl.getAllOutLink()
          Return the list of the links that begins at this node.
 java.util.List<Link> NodeImpl.getInLink()
          Return the list of the links that ends at this node and for which status is UP.
 java.util.List<Link> PathImpl.getLinkPath()
          Get the path as a List of Link
 java.util.List<Link> DomainImpl.getLinksBetweenNodes(Node srcNode, Node dstNode)
          Get the list of the UP links between srcNode and dstNode and a empty list if there is no links.
 java.util.List<Link> DomainImpl.getLinksBetweenNodes(java.lang.String srcNodeId, java.lang.String dstNodeId)
          Get the list of the UP links between srcNode and dstNode and a empty list if there is no links.
 java.util.List<Link> NodeImpl.getOutLink()
          Return the list of the links that begins at this node and for which status is UP.
 java.util.List<Link> LspImpl.getProtectedLinks()
          If the LSP is a backup LSP and protect one or more links, this method return the list of protected links and null otherwise.
 java.util.List<Link> DomainImpl.getReverseLinks(Link link)
          Returns the list of reverse links for link link.
 java.util.List<Link> DomainImpl.getReverseLinks(java.lang.String linkId)
          Returns the list of reverse links for link linkId.
 java.util.List<Link> DomainImpl.getUpLinks()
          Get all the up links
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model.impl with parameters of type Link
 void NodeImpl.addInLink(Link l)
          Initialisation method: Add a link to the list of incoming links.
 void DomainImpl.addLink(Link link)
          Add a link to the domain
 void NodeImpl.addOutLink(Link l)
          Initialisation method: Add a link to the list of outcoming links.
 boolean PathImpl.containsLink(Link link)
          Return true if the path contains the link Link
 void NodeImpl.delInLink(Link l)
          Initialisation method: Remove a link from the list of incoming links.
 void NodeImpl.delOutLink(Link l)
          Initialisation method: Remove a link from the list of outcoming links.
 java.util.List<Lsp> DomainImpl.getLspsOnLink(Link link)
          Get all the LSPs that use the link
 float DiffServBandwidthManagement.getReservableBandwidth(int priority, Link link, java.util.Set<Link> protectedLinks)
          Returns the maximum reservable bandwidth at priority level priority for a lsp traversing the link link.
 float BandwidthSharingBandwidthManagement.getReservableBandwidth(int priority, Link link, java.util.Set<Link> protectedLinks)
          Returns the maximum reservable bandwidth at priority level priority for a lsp traversing the link link.
 Link DomainImpl.getReverseLink(Link link)
          Returns the reverse link for link link.
 java.util.List<Link> DomainImpl.getReverseLinks(Link link)
          Returns the list of reverse links for link link.
 void LspImpl.linkDownEvent(Link link)
          Maintain the status of the lsp.
 void FastRerouteSwitchingMethod.linkStatusChangeEvent(Link link)
          Notify a link status change event
 void LspImpl.linkUpEvent(Link link)
           
 void DomainChangeObserverImpl.notifyAddLink(Link link)
          Notify link add
 void DomainChangeObserverImpl.notifyLinkBandwidthChange(Link link)
          Notify link bandwidth change
 void DomainChangeObserverImpl.notifyLinkDelayChange(Link link)
          Notify link delay change
 void DomainChangeObserverImpl.notifyLinkMetricChange(Link link)
          Notify link metric change
 void DomainChangeObserverImpl.notifyLinkReservedBandwidthChange(Link link)
          Notify link reserved bandwidth change
 void DomainChangeObserverImpl.notifyLinkStatusChange(Link link)
          Notify link status change
 void DomainChangeObserverImpl.notifyLinkTeMetricChange(Link link)
          Notify link TE metric change
 void DomainChangeObserverImpl.notifyRemoveLink(Link link)
          Notify link remove
 void DiffServBandwidthManagement.recomputeRbw(Link link)
          Recompute the reservable bandwidth (rbw array) of the link link by using the lsps established in the domain.
Warning: all rbw values should be set to 0 before calling this method.
 void BandwidthSharingBandwidthManagement.recomputeRbw(Link link)
          Recompute the reservable bandwidth (rbw array) of the link link.
Warning: all rbw values should be set to 0 before calling this method.
 void DomainImpl.removeLink(Link link)
          Remove a link from the domain.
 

Method parameters in be.ac.ulg.montefiore.run.totem.domain.model.impl with type arguments of type Link
 void PathImpl.createPathFromLink(java.util.List<Link> path)
          Create a Path from a list of Link
 float DiffServBandwidthManagement.getReservableBandwidth(int priority, Link link, java.util.Set<Link> protectedLinks)
          Returns the maximum reservable bandwidth at priority level priority for a lsp traversing the link link.
 float BandwidthSharingBandwidthManagement.getReservableBandwidth(int priority, Link link, java.util.Set<Link> protectedLinks)
          Returns the maximum reservable bandwidth at priority level priority for a lsp traversing the link link.
 

Constructor parameters in be.ac.ulg.montefiore.run.totem.domain.model.impl with type arguments of type Link
LspImpl(Domain domain, java.lang.String protectedLspId, java.lang.String backupId, Path path, LspBackupType lspBackupType, java.util.Collection<Link> protectedLinks)
          Advanced constructor to create a backup lsp.
 

Uses of Link in be.ac.ulg.montefiore.run.totem.repository.CSPF
 

Methods in be.ac.ulg.montefiore.run.totem.repository.CSPF that return Link
 Link CSPFElem.getLink()
           
 

Methods in be.ac.ulg.montefiore.run.totem.repository.CSPF that return types with arguments of type Link
 java.util.List<Link> CSPFElem.getLinks()
           
 

Methods in be.ac.ulg.montefiore.run.totem.repository.CSPF with parameters of type Link
 void CSPFElem.addLink(Link link)
           
protected  float CSPFInvCap.getMetric(Link link)
           
protected  float CSPFHopCount.getMetric(Link link)
           
protected  float CSPF.getMetric(Link link)
           
protected  float CSPFTEMetric.getMetric(Link link)
          Get the TE metric
protected  float CSPFInvFreeBw.getMetric(Link link)
          Get the inverse of the reservable bandwidth
protected  void CSPF.relax(Link link, int priority, boolean computeFromSourceToDestination, java.util.Set<Link> avoidLinks)
           
 void CSPFElem.setLink(Link link)
           
 

Method parameters in be.ac.ulg.montefiore.run.totem.repository.CSPF with type arguments of type Link
protected  java.util.HashMap<java.lang.String,CSPFElem> CSPF.computeCSPF(Domain domain, int priority, Node srcNode, Node dstNode, float bw, boolean stopToSourceOrDestination, boolean computeFromSourceToDestination, java.util.HashSet<Link> avoidLinks)
          Computes the CSPF between a source node and a destination node with a bandwidth requirement
protected  void CSPF.relax(Link link, int priority, boolean computeFromSourceToDestination, java.util.Set<Link> avoidLinks)
           
 

Constructors in be.ac.ulg.montefiore.run.totem.repository.CSPF with parameters of type Link
CSPFElem(Node node, float cost, Node nextHop, float bandwidth, Link link)
           
 

Uses of Link in be.ac.ulg.montefiore.run.totem.repository.DAMOTE
 

Methods in be.ac.ulg.montefiore.run.totem.repository.DAMOTE with parameters of type Link
 void DAMOTEChangeListener.addLinkEvent(Link link)
           
 void DAMOTEChangeListener.linkBandwidthChangeEvent(Link link)
           
 void DAMOTEChangeListener.linkDelayChangeEvent(Link link)
           
 void DAMOTEChangeListener.linkMetricChangeEvent(Link link)
           
 void DAMOTEChangeListener.linkReservedBandwidthChangeEvent(Link link)
           
 void DAMOTEChangeListener.linkStatusChangeEvent(Link link)
           
 void DAMOTEChangeListener.linkTeMetricChangeEvent(Link link)
           
 void DAMOTEChangeListener.removeLinkEvent(Link link)
           
 

Uses of Link in be.ac.ulg.montefiore.run.totem.trafficMatrix.model
 

Methods in be.ac.ulg.montefiore.run.totem.trafficMatrix.model with parameters of type Link
 double LinkLoadComputer.getLoad(Link lnk)
          Returns the load calculated for the given link.
 double LinkLoadComputer.getUtilization(Link lnk)
          Returns the utilization calculated for the given link.
 

Uses of Link in be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl
 

Methods in be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl with parameters of type Link
 void LinkLoadComputerImpl.addLinkEvent(Link link)
           
 double LinkLoadComputerImpl.getLoad(Link lnk)
           
 double LinkLoadComputerImpl.getUtilization(Link lnk)
           
 void LinkLoadComputerImpl.linkBandwidthChangeEvent(Link link)
           
 void LinkLoadComputerImpl.linkDelayChangeEvent(Link link)
           
 void LinkLoadComputerImpl.linkMetricChangeEvent(Link link)
           
 void LinkLoadComputerImpl.linkReservedBandwidthChangeEvent(Link link)
           
 void LinkLoadComputerImpl.linkStatusChangeEvent(Link link)
           
 void LinkLoadComputerImpl.linkTeMetricChangeEvent(Link link)
           
 void LinkLoadComputerImpl.removeLinkEvent(Link link)
           
 

Method parameters in be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl with type arguments of type Link
static void SPFLinkLoadStrategy.calculateLoads(Domain domain, TrafficMatrix tm, double[] loads, java.util.List<java.util.List<Link>> links, float fraction, int src, int dst)
           
 

Uses of Link in be.ac.ulg.montefiore.run.totem.visualtopo.graph
 

Methods in be.ac.ulg.montefiore.run.totem.visualtopo.graph with parameters of type Link
 void DomainGraph.addEdge(Link link)
           
 void MyVisualizationViewer.addLinkEvent(Link link)
           
 void MyWidthCalculator.addLinkEvent(Link link)
           
 float ReservedBandwidthColorShower.getColorValue(Link lnk)
          Returns the proportion of the links bandwidth that is reserved.
 float LinkColorShower.getColorValue(Link lnk)
          Returns a float value associated to the link.
 float UpDownLinkColorShower.getColorValue(Link lnk)
           
 float LoadColorShower.getColorValue(Link lnk)
           
 float TotalReservedBandwidthColorShower.getColorValue(Link lnk)
          Returns a float value associated to the link.
 edu.uci.ics.jung.graph.Edge DomainGraph.getEdge(Link link)
           
 void GraphManager.highlight(Link link)
           
 void MyVisualizationViewer.highlight(Link link)
           
 void MyVisualizationViewer.linkBandwidthChangeEvent(Link link)
           
 void MyWidthCalculator.linkBandwidthChangeEvent(Link link)
           
 void MyVisualizationViewer.linkDelayChangeEvent(Link link)
           
 void MyVisualizationViewer.linkMetricChangeEvent(Link link)
           
 void MyVisualizationViewer.linkReservedBandwidthChangeEvent(Link link)
           
 void MyVisualizationViewer.linkStatusChangeEvent(Link link)
           
 void MyVisualizationViewer.linkTeMetricChangeEvent(Link link)
           
 void DomainGraph.removeEdge(Link link)
           
 void MyVisualizationViewer.removeLinkEvent(Link link)
           
 void MyWidthCalculator.removeLinkEvent(Link link)
           
 

Uses of Link in be.ac.ulg.montefiore.run.totem.visualtopo.guiComponents
 

Constructors in be.ac.ulg.montefiore.run.totem.visualtopo.guiComponents with parameters of type Link
PopupMenuHandler(Link link)
          This method create a popupmenu item for the case the mouse was clicked on a Link.
 

Uses of Link in be.ac.ulg.montefiore.run.totem.visualtopo.guiComponents.domainTables
 

Methods in be.ac.ulg.montefiore.run.totem.visualtopo.guiComponents.domainTables that return Link
 Link LinkDomainTable.getLinkAt(int row)
           
 

Methods in be.ac.ulg.montefiore.run.totem.visualtopo.guiComponents.domainTables with parameters of type Link
 void DomainTableModel.addLinkEvent(Link link)
           
 void DomainTableModel.linkBandwidthChangeEvent(Link link)
           
 void DomainTableModel.linkDelayChangeEvent(Link link)
           
 void DomainTableModel.linkMetricChangeEvent(Link link)
           
 void DomainTableModel.linkReservedBandwidthChangeEvent(Link link)
           
 void DomainTableModel.linkStatusChangeEvent(Link link)
           
 void DomainTableModel.linkTeMetricChangeEvent(Link link)
           
 void DomainTableModel.removeLinkEvent(Link link)
           
 

Uses of Link in be.ac.ulg.montefiore.run.totem.visualtopo.guiModules.whatIfScenarios.model.action.impl
 

Constructors in be.ac.ulg.montefiore.run.totem.visualtopo.guiModules.whatIfScenarios.model.action.impl with parameters of type Link
ChangeLinkCapacityWIAction(Domain domain, Link link, float bw)
           
ChangeLinkCapacityWIAction(Domain domain, Link link, float bw, boolean reverseLink)
           
LinkDownWIAction(Domain domain, Link link)
           
LinkDownWIAction(Domain domain, Link link, boolean reverseLink)
           
LinkUpWIAction(Domain domain, Link link)
           
LinkUpWIAction(Domain domain, Link link, boolean reverseLink)
           
 

Uses of Link in it.unina.repository.MIRA
 

Methods in it.unina.repository.MIRA with parameters of type Link
 void MIRAChangeListener.addLinkEvent(Link link)
           
 void MIRAChangeListener.linkBandwidthChangeEvent(Link link)
           
 void MIRAChangeListener.linkDelayChangeEvent(Link link)
           
 void MIRAChangeListener.linkMetricChangeEvent(Link link)
           
 void MIRAChangeListener.linkReservedBandwidthChangeEvent(Link link)
           
 void MIRAChangeListener.linkStatusChangeEvent(Link link)
           
 void MIRAChangeListener.linkTeMetricChangeEvent(Link link)
           
 void MIRAChangeListener.removeLinkEvent(Link link)
           
 

Uses of Link in nl.tudelft.repository.XAMCRA
 

Methods in nl.tudelft.repository.XAMCRA with parameters of type Link
 void XAMCRAChangeListener.addLinkEvent(Link link)
           
 void XAMCRAChangeListener.linkBandwidthChangeEvent(Link link)
           
 void XAMCRAChangeListener.linkDelayChangeEvent(Link link)
           
 void XAMCRAChangeListener.linkMetricChangeEvent(Link link)
           
 void XAMCRAChangeListener.linkReservedBandwidthChangeEvent(Link link)
           
 void XAMCRAChangeListener.linkStatusChangeEvent(Link link)
           
 void XAMCRAChangeListener.linkTeMetricChangeEvent(Link link)
           
 void XAMCRAChangeListener.removeLinkEvent(Link link)
           
 



Copyright © 2004-2007 Research Unit in Networking, All Rights Reserved.