Uses of Class
org.openflow.gui.net.protocol.LinkType

Packages that use LinkType
org.openflow.gui Core components of the OpenFlow GUI. 
org.openflow.gui.drawables Objects which can be drawn by the Pan-Zoom GUI. 
org.openflow.gui.net.protocol Core messages for communicating with the OpenFlow GUI backend. 
 

Uses of LinkType in org.openflow.gui
 

Methods in org.openflow.gui with parameters of type LinkType
 Link Topology.addLink(LinkType linkType, NodeWithPorts dst, short dstPort, NodeWithPorts src, short srcPort)
           
 

Uses of LinkType in org.openflow.gui.drawables
 

Fields in org.openflow.gui.drawables declared as LinkType
protected  LinkType Link.type
          the type of this link
 

Methods in org.openflow.gui.drawables that return LinkType
 LinkType Link.setLinkLink()
          gets the type of this link
 

Methods in org.openflow.gui.drawables with parameters of type LinkType
 void Link.setLinkLink(LinkType type)
          sets the type of this link
 

Constructors in org.openflow.gui.drawables with parameters of type LinkType
Link(LinkType linkType, NodeWithPorts dst, short dstPort, NodeWithPorts src, short srcPort)
          Constructs a new link between src and dst.
 

Uses of LinkType in org.openflow.gui.net.protocol
 

Fields in org.openflow.gui.net.protocol declared as LinkType
 LinkType Link.linkType
          type of the link
 

Methods in org.openflow.gui.net.protocol that return LinkType
static LinkType LinkType.typeValToMessageType(short typeID)
          Returns the LinkType constant associated with typeID, if any or UNKOWN if no type is matched.
static LinkType LinkType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LinkType[] LinkType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in org.openflow.gui.net.protocol with parameters of type LinkType
Link(LinkType linkType, Node srcNode, short srcPort, Node dstNode, short dstPort)