javax.swing.plaf.basic
public class BasicToolBarSeparatorUI extends BasicSeparatorUI
Method Summary | |
---|---|
static ComponentUI | createUI(JComponent c)
Creates a new UI delegate for the given JComponent.
|
Dimension | getMaximumSize(JComponent c)
This method returns the maximum size of the JComponent.
|
Dimension | getMinimumSize(JComponent c)
This method returns the minimum size of the JComponent.
|
Dimension | getPreferredSize(JComponent c)
This method returns the preferred size of the JComponent.
|
protected void | installDefaults(JSeparator s)
This method installs the defaults that are given by the Basic L&F.
|
void | paint(Graphics g, JComponent c)
This method does nothing as a Separator is just blank space.
|
Parameters: c The JComponent to create a delegate for.
Returns: A new BasicToolBarSeparatorUI.
Parameters: c The JComponent to measure.
Returns: The maximum size.
Parameters: c The JComponent to measure.
Returns: The minimum size.
Parameters: c The JComponent to measure.
Returns: The preferred size.
Parameters: s The Separator that is being installed.
Parameters: g The Graphics object to paint with c The JComponent to paint.