org.biomage.Interface
Interface HasChannels

All Known Implementing Classes:
BioAssay, DerivedBioAssay, Image, MeasuredBioAssay, PhysicalBioAssay

public interface HasChannels


Nested Class Summary
static class HasChannels.Channels_list
          Inner list class for holding multiple entries for attribute channels.
 
Method Summary
 void addToChannels(Channel channel)
          Method to add Channel to Channels_list
 void addToChannels(int position, Channel channel)
          Method to add Channel at position to Channels_list
 HasChannels.Channels_list getChannels()
          Get method for channels
 Channel getFromChannels(int position)
          Method to get Channel from Channels_list
 void removeElementAtFromChannels(int position)
          Method to remove by position from Channels_list
 void removeFromChannels(Channel channel)
          Method to remove first Channel from Channels_list
 void setChannels(HasChannels.Channels_list channels)
          Set method for channels
 

Method Detail

setChannels

void setChannels(HasChannels.Channels_list channels)
Set method for channels

Parameters:
value - to set

getChannels

HasChannels.Channels_list getChannels()
Get method for channels

Returns:
value of the attribute

addToChannels

void addToChannels(Channel channel)
Method to add Channel to Channels_list


addToChannels

void addToChannels(int position,
                   Channel channel)
Method to add Channel at position to Channels_list


getFromChannels

Channel getFromChannels(int position)
Method to get Channel from Channels_list


removeElementAtFromChannels

void removeElementAtFromChannels(int position)
Method to remove by position from Channels_list


removeFromChannels

void removeFromChannels(Channel channel)
Method to remove first Channel from Channels_list