1 23 24 package org.objectweb.fractal.gui.graph.model; 25 26 import org.objectweb.fractal.gui.model.Interface; 27 28 31 32 public interface Tools { 33 34 38 39 int SELECT = 0; 40 41 45 46 int BIND = 1; 47 48 52 53 int MOVE = 2; 54 55 59 60 int ZOOM_IN = 3; 61 62 66 67 int ZOOM_OUT = 4; 68 69 75 76 int getTool (); 77 78 84 85 void setTool (int tool); 86 87 93 94 Interface getBindInterface (); 95 96 102 103 void setBindInterface (Interface i); 104 } 105 | Popular Tags |