Class BasicTableUI
java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.TableUI
javax.swing.plaf.basic.BasicTableUI
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionclassThis class should be treated as a "protected" inner class.classThis class should be treated as a "protected" inner class.classThis class should be treated as a "protected" inner class. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected FocusListenerFocusListenerthat are attached to theJTable.protected KeyListenerKeyListenerthat are attached to theJTable.protected MouseInputListenerMouseInputListenerthat are attached to theJTable.protected CellRendererPaneThe instance ofCellRendererPane.protected JTableThe instance ofJTable. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected FocusListenerCreates the focus listener for handling keyboard navigation in theJTable.protected KeyListenerCreates the key listener for handling keyboard navigation in theJTable.protected MouseInputListenerCreates the mouse listener for theJTable.static ComponentUIReturns a new instance ofBasicTableUI.intgetBaseline(JComponent c, int width, int height) Returns the baseline.Returns an enum indicating how the baseline of the component changes as the size changes.Return the maximum size of the table.Return the minimum size of the table.Return the preferred size of the table.protected voidInitialize JTable properties, e.g. font, foreground, and background.protected voidRegister all keyboard actions on the JTable.protected voidAttaches listeners to the JTable.voidConfigures the specified component appropriately for the look and feel.voidpaint(Graphics g, JComponent c) Paint a representation of thetableinstance that was set in installUI().protected voidUninstalls default properties.protected voidUnregisters keyboard actions.protected voidUnregisters listeners.voidReverses configuration which was done on the specified component duringinstallUI.Methods inherited from class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, update
-
Field Details
-
table
The instance ofJTable. -
rendererPane
The instance ofCellRendererPane. -
keyListener
KeyListenerthat are attached to theJTable. -
focusListener
FocusListenerthat are attached to theJTable. -
mouseInputListener
MouseInputListenerthat are attached to theJTable.
-
-
Constructor Details
-
BasicTableUI
public BasicTableUI()Constructs aBasicTableUI.
-
-
Method Details
-
createKeyListener
Creates the key listener for handling keyboard navigation in theJTable.- Returns:
- the key listener for handling keyboard navigation in the
JTable
-
createFocusListener
Creates the focus listener for handling keyboard navigation in theJTable.- Returns:
- the focus listener for handling keyboard navigation in the
JTable
-
createMouseInputListener
Creates the mouse listener for theJTable.- Returns:
- the mouse listener for the
JTable
-
createUI
Returns a new instance ofBasicTableUI.- Parameters:
c- a component- Returns:
- a new instance of
BasicTableUI
-
installUI
Description copied from class:ComponentUIConfigures the specified component appropriately for the look and feel. This method is invoked when theComponentUIinstance is being installed as the UI delegate on the specified component. This method should completely configure the component for the look and feel, including the following:- Install default property values for color, fonts, borders, icons, opacity, etc. on the component. Whenever possible, property values initialized by the client program should not be overridden.
- Install a
LayoutManageron the component if necessary. - Create/add any required sub-components to the component.
- Create/install event listeners on the component.
- Create/install a
PropertyChangeListeneron the component in order to detect and respond to component property changes appropriately. - Install keyboard UI (mnemonics, traversal, etc.) on the component.
- Initialize any appropriate instance data.
- Overrides:
installUIin classComponentUI- Parameters:
c- the component where this UI delegate is being installed- See Also:
-
installDefaults
protected void installDefaults()Initialize JTable properties, e.g. font, foreground, and background. The font, foreground, and background properties are only set if their current value is either null or a UIResource, other properties are set if the current value is null.- See Also:
-
installListeners
protected void installListeners()Attaches listeners to the JTable. -
installKeyboardActions
protected void installKeyboardActions()Register all keyboard actions on the JTable. -
uninstallUI
Description copied from class:ComponentUIReverses configuration which was done on the specified component duringinstallUI. This method is invoked when thisUIComponentinstance is being removed as the UI delegate for the specified component. This method should undo the configuration performed ininstallUI, being careful to leave theJComponentinstance in a clean state (no extraneous listeners, look-and-feel-specific property objects, etc.). This should include the following:- Remove any UI-set borders from the component.
- Remove any UI-set layout managers on the component.
- Remove any UI-added sub-components from the component.
- Remove any UI-added event/property listeners from the component.
- Remove any UI-installed keyboard UI from the component.
- Nullify any allocated instance data objects to allow for GC.
- Overrides:
uninstallUIin classComponentUI- Parameters:
c- the component from which this UI delegate is being removed; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- See Also:
-
uninstallDefaults
protected void uninstallDefaults()Uninstalls default properties. -
uninstallListeners
protected void uninstallListeners()Unregisters listeners. -
uninstallKeyboardActions
protected void uninstallKeyboardActions()Unregisters keyboard actions. -
getBaseline
Returns the baseline.- Overrides:
getBaselinein classComponentUI- Parameters:
c-JComponentbaseline is being requested forwidth- the width to get the baseline forheight- the height to get the baseline for- Returns:
- baseline or a value < 0 indicating there is no reasonable baseline
- Throws:
NullPointerException- ifcisnullIllegalArgumentException- if width or height is < 0- Since:
- 1.6
- See Also:
-
getBaselineResizeBehavior
Returns an enum indicating how the baseline of the component changes as the size changes.- Overrides:
getBaselineResizeBehaviorin classComponentUI- Parameters:
c-JComponentto return baseline resize behavior for- Returns:
- an enum indicating how the baseline changes as the component size changes
- Throws:
NullPointerException- ifcisnull- Since:
- 1.6
- See Also:
-
getMinimumSize
Return the minimum size of the table. The minimum height is the row height times the number of rows. The minimum width is the sum of the minimum widths of each column.- Overrides:
getMinimumSizein classComponentUI- Parameters:
c- the component whose minimum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- Returns:
- a
Dimensionobject ornull - See Also:
-
getPreferredSize
Return the preferred size of the table. The preferred height is the row height times the number of rows. The preferred width is the sum of the preferred widths of each column.- Overrides:
getPreferredSizein classComponentUI- Parameters:
c- the component whose preferred size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- Returns:
- a
Dimensionobject containing given component's preferred size appropriate for the look and feel - See Also:
-
getMaximumSize
Return the maximum size of the table. The maximum height is the row heighttimes the number of rows. The maximum width is the sum of the maximum widths of each column.- Overrides:
getMaximumSizein classComponentUI- Parameters:
c- the component whose maximum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- Returns:
- a
Dimensionobject ornull - See Also:
-
paint
Paint a representation of thetableinstance that was set in installUI().- Overrides:
paintin classComponentUI- Parameters:
g- theGraphicscontext in which to paintc- the component being painted; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- See Also:
-