1 3 package org.objectweb.fractal.swing; 4 5 6 public interface JToolBarItf extends JComponentItf { 7 javax.swing.JButton add (javax.swing.Action arg0); 8 int getOrientation (); 9 void addSeparator (); 10 void addSeparator (java.awt.Dimension arg0); 11 void setUI (javax.swing.plaf.ToolBarUI arg0); 12 javax.swing.plaf.ToolBarUI getUI (); 13 void setOrientation (int arg0); 14 int getComponentIndex (java.awt.Component arg0); 15 java.awt.Component getComponentAtIndex (int arg0); 16 void setMargin (java.awt.Insets arg0); 17 java.awt.Insets getMargin (); 18 boolean isBorderPainted (); 19 void setBorderPainted (boolean arg0); 20 boolean isFloatable (); 21 void setFloatable (boolean arg0); 22 } 23 | Popular Tags |