//This course was created automatically CentiJ
package graphics.raytracer;

import java.awt.*;

public interface DoImageInterface
    extends java.rmi.Remote {

  public void doTheWork()
      throws java.rmi.RemoteException;

  public void setBand(java.awt.Dimension p0)
      throws java.rmi.RemoteException;

  public void setSize(Dimension _d)
      throws java.rmi.RemoteException;

  public int[][] getSubPixels()
      throws java.rmi.RemoteException;

  public int[][] int2SubInt(int i[][])
      throws java.rmi.RemoteException;


  public int[][] getPixels()
      throws java.rmi.RemoteException;

  public java.awt.Dimension getSize()
      throws java.rmi.RemoteException;

}