package pl.wroc.pwr.image; import java.io.Serializable; import pl.wroc.pwr.imagechannel.IImageChannel; public interface IImage extends Serializable { public int getNumberOfChannels( ); public void setChannel( IImageChannel channel, int number ); public IImageChannel getChannel( int number ); public String getChannelName(int number); public int[ ] getSize( ); public int getXSize( ); public int getYSize( ); }