Uses of Class
org.problets.domain.viz.data.implement.channel.Channel

Packages that use Channel
org.problets.domain.viz.data   
org.problets.domain.viz.data.control.abstraction   
org.problets.domain.viz.data.implement   
org.problets.domain.viz.data.implement.channel   
 

Uses of Channel in org.problets.domain.viz.data
 

Methods in org.problets.domain.viz.data with parameters of type Channel
 void AggregateBaseViz.deregisterChannel(Channel inChannel)
          Pass-up mechanism for deregistering a channel that connects a pointer to its value
 void AggregateBaseViz.registerChannel(Channel inChannel)
          Pass-up mechanism for registering a channel that connects a pointer to its value
 

Uses of Channel in org.problets.domain.viz.data.control.abstraction
 

Methods in org.problets.domain.viz.data.control.abstraction with parameters of type Channel
 void BlockViz.deregisterChannel(Channel inChannel)
          Passing up the channel to be deregistered by the ChannelManager
 void BlockViz.registerChannel(Channel inChannel)
          Passing up the channel to be registered by the ChannelManager
 

Uses of Channel in org.problets.domain.viz.data.implement
 

Methods in org.problets.domain.viz.data.implement with parameters of type Channel
 void DataSpaceViz.deregisterChannel(Channel inChannel)
          Hands off request to deregister a channel to the channel manager
 void ActivationRecordViz.deregisterChannel(Channel inChannel)
          Passes the request to deregister a channel to the block
 void DataSpaceViz.registerChannel(Channel inChannel)
          Hands off request to register a channel to the channel manager
 void ActivationRecordViz.registerChannel(Channel inChannel)
          Passes the request to register a channel to the block
 

Uses of Channel in org.problets.domain.viz.data.implement.channel
 

Methods in org.problets.domain.viz.data.implement.channel that return Channel
 Channel ChannelViz.getModel()
          Returns a reference to the model for which this visualization was created
 

Methods in org.problets.domain.viz.data.implement.channel with parameters of type Channel
 void ChannelManager.deregisterChannel(Channel inChannel)
          Removes a channel from the vector of channels
 void ChannelManager.registerChannel(Channel inChannel)
          Adds a channel to the vector of channels
 

Constructors in org.problets.domain.viz.data.implement.channel with parameters of type Channel
ChannelViz(Channel inChannel)