Skip to content
Snippets Groups Projects
Select Git revision
  • 766e171fc33eafa2e4b153a2be1719f5d41e96ab
  • master default protected
2 results

4_accepted.html

Blame
  • IDrawingUpdate.java 563 B
    package remote;
    
    import java.awt.*;
    import java.io.Serializable;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    
    public interface IDrawingUpdate extends Remote, Serializable {
        boolean notifyTextDrawing(String fromClient, String text, Font font, Point startPoint) throws RemoteException;
        boolean notifyDrawing(String fromClient, Shape drawing, String mode, Color color, int strokeSize) throws RemoteException;
        boolean notifyDraggingDrawing(String fromClient, Shape drawing, String mode, Color color, int strokeSize) throws RemoteException;
    }