1 package demo.notification.whiteboard; 2 3 23 24 25 import org.omg.CORBA.ORB ; 26 27 36 37 public interface WorkgroupController { 38 39 public void drawLine(int x0, 40 int y0, 41 int x1, 42 int y1, 43 int red, 44 int green, 45 int blue); 46 47 public void drawLineLocal(int x0, 48 int y0, 49 int x1, 50 int y1, 51 int red, 52 int green, 53 int blue, 54 int brushsize); 55 56 public void updateWholeImage(int[] data); 57 58 public PixelImage getImage(); 59 60 public void clearAll(); 61 62 public void clearAllLocal(); 63 64 public void setBrushSize(int size); 65 66 public ORB getOrb(); 67 68 public String [] getListOfWhiteboards(); 69 70 public void leaveWhiteboard(); 71 72 public void selectWhiteboard(String name); 73 74 public int getWorkgroupId(); 75 76 public void exit(); 77 78 } | Popular Tags |