| java.lang.Object com.jgoodies.uif_lite.component.Factory
Factory | final public class Factory (Code) | | A very light version of the JGoodies UIFactory class.
It consists only of static methods to create frequently used components.
author: Karsten Lentzsch version: $Revision: 1.2 $ |
createStrippedScrollPane | public static JScrollPane createStrippedScrollPane(Component component)(Code) | | Creates and answers a JScrollPane that has an empty
border.
|
createStrippedSplitPane | public static JSplitPane createStrippedSplitPane(int orientation, Component comp1, Component comp2, double resizeWeight)(Code) | | Creates and returns a JSplitPane that has empty borders.
Useful to avoid duplicate decorations, for example if the split pane
is contained by other components that already provide a border.
Parameters: orientation - the split pane's orientation: horizontal or vertical Parameters: comp1 - the top/left component Parameters: comp2 - the bottom/right component Parameters: resizeWeight - indicates how to distribute extra space a split panes that has an empty border |
createToolBarButton | public static AbstractButton createToolBarButton(Action action)(Code) | | Creates and answers an AbstractButton
configured for use in a JToolBar.
Superceded by ToolBarButton from the JGoodies UI framework.
|
|
|