You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
620 B

  1. package verteiltesysteme.mandelbrot.rmi;
  2. import java.rmi.Remote;
  3. import java.rmi.RemoteException;
  4. public interface RMIMandelbrotCalculationsInterface extends Remote {
  5. void iterateAllPoints(int maxIterations, double nrPointsX, double nrPointsY) throws RemoteException;
  6. public int[] getResult() throws RemoteException;
  7. public double getULx() throws RemoteException;
  8. public double getLRx() throws RemoteException;
  9. public double getULy() throws RemoteException;
  10. public double getLRy() throws RemoteException;
  11. public void setView(double ULx, double ULy, double LRx, double LRy) throws RemoteException;
  12. }