Skip to content
Snippets Groups Projects
Select Git revision
  • 45e2dd3e7caff4aaa09f2ed9bb1044bf9307d4b0
  • master default protected
2 results

Sandwich.java

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;
    }