Uses of Interface
cz.cuni.jagrlib.Plug

Packages that use Plug
cz.cuni.jagrlib Core JaGrLib package. 
 

Uses of Plug in cz.cuni.jagrlib
 

Classes in cz.cuni.jagrlib that implement Plug
 class BasicPlug
          Basic Plug implementation - can be used for internal Plugs - inside executed Composition.
 

Fields in cz.cuni.jagrlib with type parameters of type Plug
protected  java.util.HashSet<Plug> BasicChannel.leftSet
          Set of Plugs connected to the left side.
protected  java.util.Map<java.lang.String,Plug> Piece.plugs
          Map of Plugs (potential Channels).
protected  java.util.HashSet<Plug> BasicChannel.rightSet
          Set of Plugs connected to the right side.
 

Methods in cz.cuni.jagrlib that return Plug
 Plug Piece.findPlug(Plug pl)
          Finds Plug compatible with the given one.
 Plug Piece.findPlug(java.lang.String inputInterface, java.lang.String outputInterface, boolean cloneable, boolean multi)
          Finds Plug with the given parameters.
 Plug[] BasicChannel.getAnti(Plug antiPlug)
          Returns the array of opposite-side objects (Plugs).
 Plug[] Channel.getAnti(Plug antiPlug)
          Returns the array of opposite-side objects (Plugs).
 Plug[] BasicChannel.getLeft()
          Returns the array of left-side objects (Plugs).
 Plug[] Channel.getLeft()
          Returns the array of left-side objects (Plugs).
 Plug Piece.getPlug(java.lang.String key)
          Find a plug from its name.
 Plug[] BasicChannel.getPro(Plug proPlug)
          Returns the array of same-side objects (Plugs).
 Plug[] Channel.getPro(Plug proPlug)
          Returns the array of same-side objects (Plugs).
 Plug[] BasicChannel.getRight()
          Returns the array of right-side objects (Plugs).
 Plug[] Channel.getRight()
          Returns the array of right-side objects (Plugs).
 

Methods in cz.cuni.jagrlib with parameters of type Plug
 void BasicChannel.connectAnti(Plug newPlug, Plug antiPlug)
          Connects a new Plug to the opposite Channel-side.
 void Channel.connectAnti(Plug newPlug, Plug antiPlug)
          Connects a new Plug to the opposite Channel-side.
 void BasicChannel.connectLeft(Plug newPlug)
          Connects a new Plug to the left Channel-side.
 void Channel.connectLeft(Plug newPlug)
          Connects a new Plug to the left Channel-side.
 void BasicChannel.connectPro(Plug newPlug, Plug proPlug)
          Connects a new Plug to the same Channel-side.
 void Channel.connectPro(Plug newPlug, Plug proPlug)
          Connects a new Plug to the same Channel-side.
 void BasicChannel.connectRight(Plug newPlug)
          Connects a new Plug to the right Channel-side.
 void Channel.connectRight(Plug newPlug)
          Connects a new Plug to the right Channel-side.
 void BasicChannel.disconnect(Plug oldPlug)
          Disconnects the old Plug from the Channel.
 void Channel.disconnect(Plug oldPlug)
          Disconnects the old Plug from the Channel.
 Plug Piece.findPlug(Plug pl)
          Finds Plug compatible with the given one.
 Plug[] BasicChannel.getAnti(Plug antiPlug)
          Returns the array of opposite-side objects (Plugs).
 Plug[] Channel.getAnti(Plug antiPlug)
          Returns the array of opposite-side objects (Plugs).
 java.lang.Object BasicChannel.getInterface(Plug caller)
          Returns the interface object of the given Channel-side.
 java.lang.Object Channel.getInterface(Plug caller)
          Returns the interface object of the given Channel-side.
 java.lang.String BasicChannel.getInterfaceNameAnti(Plug antiPlug)
          Returns an interface name of the opposite Channel-side.
 java.lang.String Channel.getInterfaceNameAnti(Plug antiPlug)
          Returns an interface name of the opposite Channel-side.
 java.lang.String BasicChannel.getInterfaceNamePro(Plug proPlug)
          Returns an interface name of the same Channel-side.
 java.lang.String Channel.getInterfaceNamePro(Plug proPlug)
          Returns an interface name of the same Channel-side.
 Plug[] BasicChannel.getPro(Plug proPlug)
          Returns the array of same-side objects (Plugs).
 Plug[] Channel.getPro(Plug proPlug)
          Returns the array of same-side objects (Plugs).
 boolean BasicPlug.isCompatible(Plug pl)
          Compatibility test: Am I compatible with the given Plug?
 boolean Plug.isCompatible(Plug pl)
          Compatibility test: Am I compatible with the given Plug?
 boolean BasicChannel.isLeft(Plug oldPlug)
          Is the given Plug connected to the left Channel-side?
 boolean Channel.isLeft(Plug oldPlug)
          Is the given Plug connected to the left Channel-side?
 boolean BasicPlug.isOpposite(Plug opposite)
          Compatibility test: Am I compatible with the opposite Plug?
 boolean Plug.isOpposite(Plug opposite)
          Compatibility test: Am I compatible with the opposite Plug?
 boolean BasicChannel.isRight(Plug oldPlug)
          Is the given Plug connected to the right Channel-side?
 boolean Channel.isRight(Plug oldPlug)
          Is the given Plug connected to the right Channel-side?
 java.lang.Object Piece.myInterface(Plug _plug)
          Returns interface of this Template object (callable from outside using the given Plug).
 java.lang.Object BasicChannel.setInterface(java.lang.Object newInterface, Plug called)
          Sets new interface object for the given Channel-side.
 java.lang.Object Channel.setInterface(java.lang.Object newInterface, Plug called)
          Sets new interface object for the given Channel-side.