org.biomage.Interface
Interface HasImages

All Known Implementing Classes:
ImageAcquisition

public interface HasImages


Nested Class Summary
static class HasImages.Images_list
          Inner list class for holding multiple entries for attribute images.
 
Method Summary
 void addToImages(Image image)
          Method to add Image to Images_list
 void addToImages(int position, Image image)
          Method to add Image at position to Images_list
 Image getFromImages(int position)
          Method to get Image from Images_list
 HasImages.Images_list getImages()
          Get method for images
 void removeElementAtFromImages(int position)
          Method to remove by position from Images_list
 void removeFromImages(Image image)
          Method to remove first Image from Images_list
 void setImages(HasImages.Images_list images)
          Set method for images
 

Method Detail

setImages

void setImages(HasImages.Images_list images)
Set method for images

Parameters:
value - to set

getImages

HasImages.Images_list getImages()
Get method for images

Returns:
value of the attribute

addToImages

void addToImages(Image image)
Method to add Image to Images_list


addToImages

void addToImages(int position,
                 Image image)
Method to add Image at position to Images_list


getFromImages

Image getFromImages(int position)
Method to get Image from Images_list


removeElementAtFromImages

void removeElementAtFromImages(int position)
Method to remove by position from Images_list


removeFromImages

void removeFromImages(Image image)
Method to remove first Image from Images_list