org.biomage.Interface
Interface HasOwner

All Known Implementing Classes:
Security

public interface HasOwner


Nested Class Summary
static class HasOwner.Owner_list
          Inner list class for holding multiple entries for attribute owner.
 
Method Summary
 void addToOwner(Contact contact)
          Method to add Contact to Owner_list
 void addToOwner(int position, Contact contact)
          Method to add Contact at position to Owner_list
 Contact getFromOwner(int position)
          Method to get Contact from Owner_list
 HasOwner.Owner_list getOwner()
          Get method for owner
 void removeElementAtFromOwner(int position)
          Method to remove by position from Owner_list
 void removeFromOwner(Contact contact)
          Method to remove first Contact from Owner_list
 void setOwner(HasOwner.Owner_list owner)
          Set method for owner
 

Method Detail

setOwner

void setOwner(HasOwner.Owner_list owner)
Set method for owner

Parameters:
value - to set

getOwner

HasOwner.Owner_list getOwner()
Get method for owner

Returns:
value of the attribute

addToOwner

void addToOwner(Contact contact)
Method to add Contact to Owner_list


addToOwner

void addToOwner(int position,
                Contact contact)
Method to add Contact at position to Owner_list


getFromOwner

Contact getFromOwner(int position)
Method to get Contact from Owner_list


removeElementAtFromOwner

void removeElementAtFromOwner(int position)
Method to remove by position from Owner_list


removeFromOwner

void removeFromOwner(Contact contact)
Method to remove first Contact from Owner_list