KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > fractal > swing > ActionAttributes


1 /**
2  * copyright area
3  */

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 JavaDoc getName ();
12
13   void setName (String JavaDoc name);
14
15   String JavaDoc getIconURL ();
16
17   void setIconURL (String JavaDoc iconURL);
18
19   String JavaDoc getToolTipText ();
20
21   void setToolTipText (String JavaDoc toolTipText);
22
23   String JavaDoc getAcceleratorKey ();
24
25   void setAcceleratorKey (String JavaDoc acceleratorKey);
26 }
27
Popular Tags