1 4 5 package org.objectweb.fractal.swing; 6 7 import org.objectweb.fractal.api.control.AttributeController; 8 9 public interface ActionAttributes extends AttributeController { 10 11 String getName (); 12 13 void setName (String name); 14 15 String getIconURL (); 16 17 void setIconURL (String iconURL); 18 19 String getToolTipText (); 20 21 void setToolTipText (String toolTipText); 22 23 String getAcceleratorKey (); 24 25 void setAcceleratorKey (String acceleratorKey); 26 } 27 | Popular Tags |