org.biomage.Interface
Interface HasProviders

All Known Implementing Classes:
Experiment

public interface HasProviders


Nested Class Summary
static class HasProviders.Providers_list
          Inner list class for holding multiple entries for attribute providers.
 
Method Summary
 void addToProviders(Contact contact)
          Method to add Contact to Providers_list
 void addToProviders(int position, Contact contact)
          Method to add Contact at position to Providers_list
 Contact getFromProviders(int position)
          Method to get Contact from Providers_list
 HasProviders.Providers_list getProviders()
          Get method for providers
 void removeElementAtFromProviders(int position)
          Method to remove by position from Providers_list
 void removeFromProviders(Contact contact)
          Method to remove first Contact from Providers_list
 void setProviders(HasProviders.Providers_list providers)
          Set method for providers
 

Method Detail

setProviders

void setProviders(HasProviders.Providers_list providers)
Set method for providers

Parameters:
value - to set

getProviders

HasProviders.Providers_list getProviders()
Get method for providers

Returns:
value of the attribute

addToProviders

void addToProviders(Contact contact)
Method to add Contact to Providers_list


addToProviders

void addToProviders(int position,
                    Contact contact)
Method to add Contact at position to Providers_list


getFromProviders

Contact getFromProviders(int position)
Method to get Contact from Providers_list


removeElementAtFromProviders

void removeElementAtFromProviders(int position)
Method to remove by position from Providers_list


removeFromProviders

void removeFromProviders(Contact contact)
Method to remove first Contact from Providers_list