1 23 24 package org.objectweb.fractal.gui.selection.model; 25 26 import org.objectweb.fractal.gui.model.Component; 27 import org.objectweb.fractal.gui.model.Interface; 28 29 32 33 public interface Selection { 34 35 41 42 Object getSelection (); 43 44 49 50 void selectComponent (Component component); 51 52 57 58 void selectInterface (Interface itf); 59 60 63 64 void clearSelection (); 65 } 66 | Popular Tags |