1 23 24 package org.objectweb.fractal.gui.graph.model; 25 26 import org.objectweb.fractal.gui.model.Component; 27 28 import java.awt.Color ; 29 30 33 34 public interface GraphModel { 35 36 42 43 Color getComponentColor (Component component); 44 45 51 void setComponentColor (Component component, Color color); 52 53 63 64 Rect getComponentPosition (Component component); 65 66 73 74 void setComponentPosition (Component component, Rect position); 75 } 76 | Popular Tags |