Package com.jidesoft.swing
Interface ResizableSupport
-
- All Known Implementing Classes:
ResizableDialog,ResizableFrame,ResizablePanel,ResizableWindow
public interface ResizableSupportAn interface to indicate a component support Resizable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.swing.border.BordergetBorder()Gets the border of the component.ResizablegetResizable()Gets the underlying Resizable.voidsetBorder(javax.swing.border.Border border)Sets the border of the component.
-
-
-
Method Detail
-
getBorder
javax.swing.border.Border getBorder()
Gets the border of the component. Resizing function depends on a non-empty border.- Returns:
- the border.
-
setBorder
void setBorder(javax.swing.border.Border border)
Sets the border of the component.- Parameters:
border- the border
-
getResizable
Resizable getResizable()
Gets the underlying Resizable. Any resizable component should have a Resizable.- Returns:
- the Resizable.
-
-