KickJava   Java API By Example, From Geeks To Geeks.

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


1 // automatically generated
2

3 package org.objectweb.fractal.swing;
4
5
6 public interface AbstractButtonAttributes extends JComponentAttributes {
7   String JavaDoc getLabel ();
8   String JavaDoc getActionCommand ();
9   String JavaDoc getText ();
10   void setLabel (String JavaDoc arg0);
11   void setActionCommand (String JavaDoc arg0);
12   void setUI (javax.swing.plaf.ButtonUI JavaDoc arg0);
13   javax.swing.plaf.ButtonUI JavaDoc getUI ();
14   void setMargin (java.awt.Insets JavaDoc arg0);
15   java.awt.Insets JavaDoc getMargin ();
16   void setAction (javax.swing.Action JavaDoc arg0);
17   void setHorizontalTextPosition (int arg0);
18   void setVerticalTextPosition (int arg0);
19   void setModel (javax.swing.ButtonModel JavaDoc arg0);
20   void setText (String JavaDoc arg0);
21   void setIcon (javax.swing.Icon JavaDoc arg0);
22   javax.swing.Icon JavaDoc getIcon ();
23   javax.swing.Icon JavaDoc getPressedIcon ();
24   void setPressedIcon (javax.swing.Icon JavaDoc arg0);
25   javax.swing.Icon JavaDoc getSelectedIcon ();
26   void setSelectedIcon (javax.swing.Icon JavaDoc arg0);
27   javax.swing.Icon JavaDoc getRolloverIcon ();
28   void setRolloverIcon (javax.swing.Icon JavaDoc arg0);
29   javax.swing.Icon JavaDoc getRolloverSelectedIcon ();
30   void setRolloverSelectedIcon (javax.swing.Icon JavaDoc arg0);
31   javax.swing.Icon JavaDoc getDisabledIcon ();
32   void setDisabledIcon (javax.swing.Icon JavaDoc arg0);
33   javax.swing.Icon JavaDoc getDisabledSelectedIcon ();
34   void setDisabledSelectedIcon (javax.swing.Icon JavaDoc arg0);
35   int getVerticalAlignment ();
36   void setVerticalAlignment (int arg0);
37   int getHorizontalAlignment ();
38   void setHorizontalAlignment (int arg0);
39   int getVerticalTextPosition ();
40   int getHorizontalTextPosition ();
41   javax.swing.Action JavaDoc getAction ();
42   int getMnemonic ();
43   void setMnemonic (int arg0);
44   javax.swing.ButtonModel JavaDoc getModel ();
45 }
46
Popular Tags