Skip to content
Snippets Groups Projects
Select Git revision
  • 93038a72f0821a30886641d9d86c3c17d8475c1f
  • master default protected
  • patch-1
3 results

authorized_keys

Blame
  • Forked from Renlord Yang / comp30023-keys
    Source project has a limited visibility.
    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;
    }