Class JXTreeTable

  • All Implemented Interfaces:
    java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable, java.util.EventListener, javax.accessibility.Accessible, javax.swing.event.CellEditorListener, javax.swing.event.ListSelectionListener, javax.swing.event.RowSorterListener, javax.swing.event.TableColumnModelListener, javax.swing.event.TableModelListener, javax.swing.Scrollable, TableColumnModelExtListener

    public class JXTreeTable
    extends JXTable

    JXTreeTable is a specialized table consisting of a single column in which to display hierarchical data, and any number of other columns in which to display regular data. The interface for the data model used by a JXTreeTable is TreeTableModel. It extends the TreeModel interface to allow access to cell data by column indices within each node of the tree hierarchy.

    The most straightforward way create and use a JXTreeTable, is to first create a suitable data model for it, and pass that to a JXTreeTable constructor, as shown below:

      TreeTableModel  treeTableModel = new FileSystemModel(); // any TreeTableModel
      JXTreeTable     treeTable = new JXTreeTable(treeTableModel);
      JScrollPane     scrollpane = new JScrollPane(treeTable);
     
    See JTable for an explanation of why putting the treetable inside a scroll pane is necessary.

    A single treetable model instance may be shared among more than one JXTreeTable instances. To access the treetable model, always call getTreeTableModel and setTreeTableModel. JXTreeTable wraps the supplied treetable model inside a private adapter class to adapt it to a TableModel. Although the model adapter is accessible through the getModel method, you should avoid accessing and manipulating it in any way. In particular, each model adapter instance is tightly bound to a single table instance, and any attempt to share it with another table (for example, by calling setModel) will throw an IllegalArgumentException!

    Author:
    Philip Milne, Scott Violet, Ramesh Gupta
    See Also:
    Serialized Form
    • Field Detail

      • DRAG_HACK_FLAG_KEY

        public static final java.lang.String DRAG_HACK_FLAG_KEY
        Key for clientProperty to decide whether to apply hack around #168-jdnc.
        See Also:
        Constant Field Values
      • DROP_HACK_FLAG_KEY

        public static final java.lang.String DROP_HACK_FLAG_KEY
        Key for clientProperty to decide whether to apply hack around #766-swingx.
        See Also:
        Constant Field Values
    • Constructor Detail

      • JXTreeTable

        public JXTreeTable​(TreeTableModel treeModel)
        Constructs a JXTreeTable using the specified TreeTableModel.
        Parameters:
        treeModel - model for the JXTreeTable
    • Method Detail

      • setSortable

        public void setSortable​(boolean sortable)
        Sets "sortable" property indicating whether or not this table supports sortable columns. If sortable is true then sorting will be enabled on all columns whose sortable property is true. If sortable is false then sorting will be disabled for all columns, regardless of each column's individual sorting property. The default is true.

        Note: as of post-1.0 this property is propagated to the SortController if controlsSorterProperties is true. Whether or not a change triggers a re-sort is up to either the concrete controller implementation (the default doesn't) or client code. This behaviour is different from old SwingX style sorting.

        Overridden to do nothing. TreeTable is not sortable because there is no equivalent to RowSorter (which is targeted to linear structures) for hierarchical data.

        Overrides:
        setSortable in class JXTable
        Parameters:
        sortable - boolean indicating whether or not this table supports sortable columns
        See Also:
        JXTable.getControlsSorterProperties()
      • setAutoCreateRowSorter

        public void setAutoCreateRowSorter​(boolean autoCreateRowSorter)

        Overridden to

        • fix core bug: replaces sorter even if flag doesn't change.
        • use xflag (need because super's RowSorter creation is hard-coded.

        Overridden to do nothing. TreeTable is not sortable because there is no equivalent to RowSorter (which is targeted to linear structures) for hierarchical data.

        Overrides:
        setAutoCreateRowSorter in class JXTable
      • setRowSorter

        public void setRowSorter​(javax.swing.RowSorter<? extends javax.swing.table.TableModel> sorter)

        Overridden propagate sort-related properties to the sorter after calling super, if the given RowSorter is of type SortController. Does nothing additional otherwise.

        Overridden to do nothing. TreeTable is not sortable because there is no equivalent to RowSorter (which is targeted to linear structures) for hierarchical data.

        Overrides:
        setRowSorter in class JXTable
      • setEnabled

        public void setEnabled​(boolean enabled)

        Overridden to keep the tree's enabled in synch.

        Overrides:
        setEnabled in class javax.swing.JComponent
      • setSelectionBackground

        public void setSelectionBackground​(java.awt.Color selectionBackground)

        Overridden because super throws NPE on null param.

        Overridden to keep the tree's selectionBackground in synch.

        Overrides:
        setSelectionBackground in class JXTable
      • setSelectionForeground

        public void setSelectionForeground​(java.awt.Color selectionForeground)

        Overridden because super throws NPE on null param.

        Overridden to keep the tree's selectionForeground in synch.

        Overrides:
        setSelectionForeground in class JXTable
      • editCellAt

        public boolean editCellAt​(int row,
                                  int column,
                                  java.util.EventObject e)
        Overriden to invoke repaint for the particular location if the column contains the tree. This is done as the tree editor does not fill the bounds of the cell, we need the renderer to paint the tree in the background, and then draw the editor over it. You should not need to call this method directly.

        Additionally, there is tricksery involved to expand/collapse the nodes.

        overridden to install a custom editor remover.

        Overrides:
        editCellAt in class JXTable
      • processMouseEvent

        protected void processMouseEvent​(java.awt.event.MouseEvent e)
        Overridden to enable hit handle detection a mouseEvent which triggered a expand/collapse.
        Overrides:
        processMouseEvent in class javax.swing.JComponent
      • createTreeTableHacker

        protected JXTreeTable.TreeTableHacker createTreeTableHacker()
        Hacking around various issues. Subclass and let it return your favourite. The current default is TreeTableHackerExt5 (latest evolution to work around #1230), the old long-standing default was TreeTableHackerExt3. If you experience problems with the latest, please let us know.
        Returns:
      • processMouseMotionEvent

        protected void processMouseMotionEvent​(java.awt.event.MouseEvent e)
        Overrides:
        processMouseMotionEvent in class javax.swing.JComponent
      • hackAroundDragEnabled

        protected boolean hackAroundDragEnabled​(java.awt.event.MouseEvent me)
        Decides whether we want to apply the hack for #168-jdnc. here: returns true if dragEnabled() and a client property with key DRAG_HACK_FLAG_KEY has a value of boolean true.

        Note: this is updated for 1.6, as the intermediate system property for enabled drag support is useless now (it's the default)

        Parameters:
        me - the mouseEvent that triggered a editCellAt
        Returns:
        true if the hack should be applied.
      • getEditingRow

        public int getEditingRow()
        Overridden to provide a workaround for BasicTableUI anomaly. Make sure the UI never tries to resize the editor. The UI currently uses different techniques to paint the renderers and editors. So, overriding setBounds() is not the right thing to do for an editor. Returning -1 for the editing row in this case, ensures the editor is never painted.
        Overrides:
        getEditingRow in class javax.swing.JTable
      • setTreeTableModel

        public void setTreeTableModel​(TreeTableModel treeModel)
        Sets the data model for this JXTreeTable to the specified TreeTableModel. The same data model may be shared by any number of JXTreeTable instances.
        Parameters:
        treeModel - data model for this JXTreeTable
      • getTreeTableModel

        public TreeTableModel getTreeTableModel()
        Returns the underlying TreeTableModel for this JXTreeTable.
        Returns:
        the underlying TreeTableModel for this JXTreeTable
      • setModel

        public final void setModel​(javax.swing.table.TableModel tableModel)

        Overrides superclass version to make sure that the specified TableModel is compatible with JXTreeTable before invoking the inherited version.

        Because JXTreeTable internally adapts an TreeTableModel to make it a compatible TableModel, this method should never be called directly. Use setTreeTableModel instead.

        While it is possible to obtain a reference to this adapted version of the TableModel by calling JTable.getModel(), any attempt to call setModel() with that adapter will fail because the adapter might have been bound to a different JXTreeTable instance. If you want to extract the underlying TreeTableModel, which, by the way, can be shared, use getTreeTableModel instead

        .
        Overrides:
        setModel in class JXTable
        Parameters:
        tableModel - must be a TreeTableModelAdapter
        Throws:
        java.lang.IllegalArgumentException - if the specified tableModel is not an instance of TreeTableModelAdapter
      • tableChanged

        public void tableChanged​(javax.swing.event.TableModelEvent e)
        Description copied from class: JXTable

        Overridden to update internal state related to enhanced functionality and hack around core bugs.

        • re-calculate intialize column width and preferred scrollable size after a structureChanged if autocreateColumnsFromModel is true.
        • update string representation control after structureChanged
        • core bug #6791934 logic to force revalidate if appropriate

        Specified by:
        tableChanged in interface javax.swing.event.TableModelListener
        Overrides:
        tableChanged in class JXTable
      • setRowHeight

        public final void setRowHeight​(int row,
                                       int rowHeight)
        Throws UnsupportedOperationException because variable height rows are not supported.
        Overrides:
        setRowHeight in class javax.swing.JTable
        Parameters:
        row - ignored
        rowHeight - ignored
        Throws:
        java.lang.UnsupportedOperationException - because variable height rows are not supported
      • setRowHeight

        public void setRowHeight​(int rowHeight)
        Sets the row height for this JXTreeTable and forwards the row height to the renderering tree.
        Overrides:
        setRowHeight in class JXTable
        Parameters:
        rowHeight - height of a row.
        See Also:
        JXTable.isXTableRowHeightSet
      • adjustTreeRowHeight

        protected void adjustTreeRowHeight​(int tableRowHeight)
        Forwards tableRowHeight to tree.
        Parameters:
        tableRowHeight - height of a row.
      • adjustTableRowHeight

        protected void adjustTableRowHeight​(int treeRowHeight)
        Forwards treeRowHeight to table. This is for completeness only: the rendering tree is under our total control, so we don't expect any external call to tree.setRowHeight.
        Parameters:
        treeRowHeight - height of a row.
      • columnMarginChanged

        public void columnMarginChanged​(javax.swing.event.ChangeEvent e)

        Overridden to support enhanced auto-resize behaviour enabled and necessary.

        Overridden to adjust the renderer's size.

        Specified by:
        columnMarginChanged in interface javax.swing.event.TableColumnModelListener
        Overrides:
        columnMarginChanged in class JXTable
        See Also:
        JXTable.setHorizontalScrollEnabled(boolean)
      • setSelectionMode

        public void setSelectionMode​(int mode)

        Overridden to ensure that private renderer state is kept in sync with the state of the component. Calls the inherited version after performing the necessary synchronization. If you override this method, make sure you call this version from your version of this method.

        This version maps the selection mode used by the renderer to match the selection mode specified for the table. Specifically, the modes are mapped as follows:

          ListSelectionModel.SINGLE_INTERVAL_SELECTION: TreeSelectionModel.CONTIGUOUS_TREE_SELECTION;
          ListSelectionModel.MULTIPLE_INTERVAL_SELECTION: TreeSelectionModel.DISCONTIGUOUS_TREE_SELECTION;
          any other (default): TreeSelectionModel.SINGLE_TREE_SELECTION;
         
        Overrides:
        setSelectionMode in class javax.swing.JTable
        Parameters:
        mode - any of the table selection modes
      • prepareRenderer

        public java.awt.Component prepareRenderer​(javax.swing.table.TableCellRenderer renderer,
                                                  int row,
                                                  int column)
        Returns the decorated Component used as a stamp to render the specified cell. Overrides superclass version to provide support for cell decorators.

        Adjusts component orientation (guaranteed to happen before applying Highlighters).

        Per-column highlighters contained in TableColumnExt.getHighlighters() are applied to the renderer after the table highlighters.

        TODO kgs: interaction of search highlighter and column highlighters

        Note: DefaultTableCellRenderer and subclasses require a hack to play nicely with Highlighters because it has an internal "color memory" in setForeground/setBackground. The hack is applied in resetDefaultTableCellRendererColors which is called after super.prepareRenderer and before applying the Highlighters. The method is called always and for all renderers.

        Overridden to decorate the tree's renderer after calling super. At that point, it is only the tree itself that has been decorated.

        Overrides:
        prepareRenderer in class JXTable
        Parameters:
        renderer - the TableCellRenderer to prepare
        row - the row of the cell to render, where 0 is the first row
        column - the column of the cell to render, where 0 is the first column
        Returns:
        the Component used as a stamp to render the specified cell
        See Also:
        applyRenderer(Component, ComponentAdapter)
      • applyRenderer

        protected java.awt.Component applyRenderer​(java.awt.Component component,
                                                   ComponentAdapter adapter)
        Performs configuration of the tree's renderer if the adapter's column is the hierarchical column, does nothing otherwise.

        Note: this is legacy glue if the treeCellRenderer is of type DefaultTreeCellRenderer. In that case the renderer's background/foreground/Non/Selection colors are set to the tree's background/foreground depending on the adapter's selection state. Does nothing if the treeCellRenderer is backed by a ComponentProvider.

        Parameters:
        component - the rendering component
        adapter - component data adapter
        Throws:
        java.lang.NullPointerException - if the specified component or adapter is null
      • setTreeCellRenderer

        public void setTreeCellRenderer​(javax.swing.tree.TreeCellRenderer cellRenderer)
        Sets the specified TreeCellRenderer as the Tree cell renderer.
        Parameters:
        cellRenderer - to use for rendering tree cells.
      • getTreeCellRenderer

        public javax.swing.tree.TreeCellRenderer getTreeCellRenderer()
      • getToolTipText

        public java.lang.String getToolTipText​(java.awt.event.MouseEvent event)
        Overrides:
        getToolTipText in class javax.swing.JTable
      • setCollapsedIcon

        public void setCollapsedIcon​(javax.swing.Icon icon)
        Sets the specified icon as the icon to use for rendering collapsed nodes.
        Parameters:
        icon - to use for rendering collapsed nodes
        See Also:
        JXTree.setCollapsedIcon(Icon)
      • setExpandedIcon

        public void setExpandedIcon​(javax.swing.Icon icon)
        Sets the specified icon as the icon to use for rendering expanded nodes.
        Parameters:
        icon - to use for rendering expanded nodes
        See Also:
        JXTree.setExpandedIcon(Icon)
      • setOpenIcon

        public void setOpenIcon​(javax.swing.Icon icon)
        Sets the specified icon as the icon to use for rendering open container nodes.
        Parameters:
        icon - to use for rendering open nodes
        See Also:
        JXTree.setOpenIcon(Icon)
      • setClosedIcon

        public void setClosedIcon​(javax.swing.Icon icon)
        Sets the specified icon as the icon to use for rendering closed container nodes.
        Parameters:
        icon - to use for rendering closed nodes
        See Also:
        JXTree.setClosedIcon(Icon)
      • setLeafIcon

        public void setLeafIcon​(javax.swing.Icon icon)
        Sets the specified icon as the icon to use for rendering leaf nodes.
        Parameters:
        icon - to use for rendering leaf nodes
        See Also:
        JXTree.setLeafIcon(Icon)
      • clearSelection

        public void clearSelection()
        Overridden to ensure that private renderer state is kept in sync with the state of the component. Calls the inherited version after performing the necessary synchronization. If you override this method, make sure you call this version from your version of this method.
        Overrides:
        clearSelection in class javax.swing.JTable
      • collapseAll

        public void collapseAll()
        Collapses all nodes in the treetable.
      • expandAll

        public void expandAll()
        Expands all nodes in the treetable.
      • collapsePath

        public void collapsePath​(javax.swing.tree.TreePath path)
        Collapses the node at the specified path in the treetable.
        Parameters:
        path - path of the node to collapse
      • expandPath

        public void expandPath​(javax.swing.tree.TreePath path)
        Expands the the node at the specified path in the treetable.
        Parameters:
        path - path of the node to expand
      • scrollPathToVisible

        public void scrollPathToVisible​(javax.swing.tree.TreePath path)
        Makes sure all the path components in path are expanded (except for the last path component) and scrolls so that the node identified by the path is displayed. Only works when this JTree is contained in a JScrollPane. (doc copied from JTree) PENDING: JW - where exactly do we want to scroll? Here: the scroll is in vertical direction only. Might need to show the tree column?
        Parameters:
        path - the TreePath identifying the node to bring into view
      • collapseRow

        public void collapseRow​(int row)
        Collapses the row in the treetable. If the specified row index is not valid, this method will have no effect.
      • expandRow

        public void expandRow​(int row)
        Expands the specified row in the treetable. If the specified row index is not valid, this method will have no effect.
      • isVisible

        public boolean isVisible​(javax.swing.tree.TreePath path)
        Returns true if the value identified by path is currently viewable, which means it is either the root or all of its parents are expanded. Otherwise, this method returns false.
        Returns:
        true, if the value identified by path is currently viewable; false, otherwise
      • isExpanded

        public boolean isExpanded​(javax.swing.tree.TreePath path)
        Returns true if the node identified by path is currently expanded. Otherwise, this method returns false.
        Parameters:
        path - path
        Returns:
        true, if the value identified by path is currently expanded; false, otherwise
      • isExpanded

        public boolean isExpanded​(int row)
        Returns true if the node at the specified display row is currently expanded. Otherwise, this method returns false.
        Parameters:
        row - row
        Returns:
        true, if the node at the specified display row is currently expanded. false, otherwise
      • isCollapsed

        public boolean isCollapsed​(javax.swing.tree.TreePath path)
        Returns true if the node identified by path is currently collapsed, this will return false if any of the values in path are currently not being displayed.
        Parameters:
        path - path
        Returns:
        true, if the value identified by path is currently collapsed; false, otherwise
      • isCollapsed

        public boolean isCollapsed​(int row)
        Returns true if the node at the specified display row is collapsed.
        Parameters:
        row - row
        Returns:
        true, if the node at the specified display row is currently collapsed. false, otherwise
      • getExpandedDescendants

        public java.util.Enumeration<?> getExpandedDescendants​(javax.swing.tree.TreePath parent)
        Returns an Enumeration of the descendants of the path parent that are currently expanded. If parent is not currently expanded, this will return null. If you expand/collapse nodes while iterating over the returned Enumeration this may not return all the expanded paths, or may return paths that are no longer expanded.
        Parameters:
        parent - the path which is to be examined
        Returns:
        an Enumeration of the descendents of parent, or null if parent is not currently expanded
      • getPathForLocation

        public javax.swing.tree.TreePath getPathForLocation​(int x,
                                                            int y)
        Returns the TreePath for a given x,y location.
        Parameters:
        x - x value
        y - y value
        Returns:
        the TreePath for the givern location.
      • getPathForRow

        public javax.swing.tree.TreePath getPathForRow​(int row)
        Returns the TreePath for a given row.
        Parameters:
        row -
        Returns:
        the TreePath for the given row.
      • getRowForPath

        public int getRowForPath​(javax.swing.tree.TreePath path)
        Returns the row for a given TreePath.
        Parameters:
        path -
        Returns:
        the row for the given TreePath.
      • setRootVisible

        public void setRootVisible​(boolean visible)
        Determines whether or not the root node from the TreeModel is visible.
        Parameters:
        visible - true, if the root node is visible; false, otherwise
      • isRootVisible

        public boolean isRootVisible()
        Returns true if the root node of the tree is displayed.
        Returns:
        true if the root node of the tree is displayed
      • setScrollsOnExpand

        public void setScrollsOnExpand​(boolean scroll)
        Sets the value of the scrollsOnExpand property for the tree part. This property specifies whether the expanded paths should be scrolled into view. In a look and feel in which a tree might not need to scroll when expanded, this property may be ignored.
        Parameters:
        scroll - true, if expanded paths should be scrolled into view; false, otherwise
      • getScrollsOnExpand

        public boolean getScrollsOnExpand()
        Returns the value of the scrollsOnExpand property.
        Returns:
        the value of the scrollsOnExpand property
      • setShowsRootHandles

        public void setShowsRootHandles​(boolean visible)
        Sets the value of the showsRootHandles property for the tree part. This property specifies whether the node handles should be displayed. If handles are not supported by a particular look and feel, this property may be ignored.
        Parameters:
        visible - true, if root handles should be shown; false, otherwise
      • getShowsRootHandles

        public boolean getShowsRootHandles()
        Returns the value of the showsRootHandles property.
        Returns:
        the value of the showsRootHandles property
      • setExpandsSelectedPaths

        public void setExpandsSelectedPaths​(boolean expand)
        Sets the value of the expandsSelectedPaths property for the tree part. This property specifies whether the selected paths should be expanded.
        Parameters:
        expand - true, if selected paths should be expanded; false, otherwise
      • getExpandsSelectedPaths

        public boolean getExpandsSelectedPaths()
        Returns the value of the expandsSelectedPaths property.
        Returns:
        the value of the expandsSelectedPaths property
      • getToggleClickCount

        public int getToggleClickCount()
        Returns the number of mouse clicks needed to expand or close a node.
        Returns:
        number of mouse clicks before node is expanded
      • setToggleClickCount

        public void setToggleClickCount​(int clickCount)
        Sets the number of mouse clicks before a node will expand or close. The default is two.
        Parameters:
        clickCount - the number of clicks required to expand/collapse a node.
      • isLargeModel

        public boolean isLargeModel()
        Returns true if the tree is configured for a large model. The default value is false.
        Returns:
        true if a large model is suggested
        See Also:
        setLargeModel(boolean)
      • setLargeModel

        public void setLargeModel​(boolean newValue)
        Specifies whether the UI should use a large model. (Not all UIs will implement this.)

        NOTE: this method is exposed for completeness - currently it's not recommended to use a large model because there are some issues (not yet fully understood), namely issue #25-swingx, and probably #270-swingx.

        Parameters:
        newValue - true to suggest a large model to the UI
      • addTreeExpansionListener

        public void addTreeExpansionListener​(javax.swing.event.TreeExpansionListener tel)
        Adds a listener for TreeExpansion events.
        Parameters:
        tel - a TreeExpansionListener that will be notified when a tree node is expanded or collapsed
      • removeTreeExpansionListener

        public void removeTreeExpansionListener​(javax.swing.event.TreeExpansionListener tel)
        Removes a listener for TreeExpansion events.
        Parameters:
        tel - the TreeExpansionListener to remove
      • addTreeSelectionListener

        public void addTreeSelectionListener​(javax.swing.event.TreeSelectionListener tsl)
        Adds a listener for TreeSelection events. TODO (JW): redirect event source to this.
        Parameters:
        tsl - a TreeSelectionListener that will be notified when a tree node is selected or deselected
      • removeTreeSelectionListener

        public void removeTreeSelectionListener​(javax.swing.event.TreeSelectionListener tsl)
        Removes a listener for TreeSelection events.
        Parameters:
        tsl - the TreeSelectionListener to remove
      • addTreeWillExpandListener

        public void addTreeWillExpandListener​(javax.swing.event.TreeWillExpandListener tel)
        Adds a listener for TreeWillExpand events. TODO (JW): redirect event source to this.
        Parameters:
        tel - a TreeWillExpandListener that will be notified when a tree node will be expanded or collapsed
      • removeTreeWillExpandListener

        public void removeTreeWillExpandListener​(javax.swing.event.TreeWillExpandListener tel)
        Removes a listener for TreeWillExpand events.
        Parameters:
        tel - the TreeWillExpandListener to remove
      • getTreeSelectionModel

        public javax.swing.tree.TreeSelectionModel getTreeSelectionModel()
        Returns the selection model for the tree portion of the this treetable.
        Returns:
        selection model for the tree portion of the this treetable
      • sizeColumnsToFit

        public void sizeColumnsToFit​(int resizingColumn)
        Overriden to invoke supers implementation, and then, if the receiver is editing a Tree column, the editors bounds is reset. The reason we have to do this is because JTable doesn't think the table is being edited, as getEditingRow returns -1, and therefore doesn't automaticly resize the editor for us.
        Overrides:
        sizeColumnsToFit in class javax.swing.JTable
      • isHierarchical

        public boolean isHierarchical​(int column)
        Determines if the specified column is defined as the hierarchical column.
        Parameters:
        column - zero-based index of the column in view coordinates
        Returns:
        true if the column is the hierarchical column; false otherwise.
        Throws:
        java.lang.IllegalArgumentException - if the column is less than 0 or greater than or equal to the column count
      • getHierarchicalColumn

        public int getHierarchicalColumn()
        Returns the index of the hierarchical column. This is the column that is displayed as the tree.
        Returns:
        the index of the hierarchical column, -1 if there is no hierarchical column
      • getCellRenderer

        public javax.swing.table.TableCellRenderer getCellRenderer​(int row,
                                                                   int column)

        Overridden to fix core bug #4614616 (NPE if TableModel's Class for the column is an interface). This method guarantees to always return a not null value. Returns the default renderer for Object if super returns null.

        Note: The lookup strategy for is unchanged compared to super. Subclasses which override this with a different lookup strategy are strongly advised to implement a custom StringValueRegistry with that lookup strategy to keep the WYSIWYM in SwingX.

        Overrides:
        getCellRenderer in class JXTable
      • getCellEditor

        public javax.swing.table.TableCellEditor getCellEditor​(int row,
                                                               int column)
        Overrides:
        getCellEditor in class javax.swing.JTable
      • updateUI

        public void updateUI()
        Description copied from class: JXTable

        Additionally updates auto-adjusted row height and highlighters.

        Another of the override motivation is to fix core issue (?? ID): super fails to update all renderers/editors.

        Overrides:
        updateUI in class JXTable
      • updateHierarchicalRendererEditor

        protected void updateHierarchicalRendererEditor()
        Updates Ui of renderer/editor for the hierarchical column. Need to do so manually, as not accessible by the default lookup.
      • getStringAt

        public java.lang.String getStringAt​(int row,
                                            int column)
        Returns the string representation of the cell value at the given position.

        Overridden to message the tree directly if the column is the view index of the hierarchical column.

        PENDING JW: revisit once we switch to really using a table renderer. As is, it's a quick fix for #821-swingx: string rep for hierarchical column incorrect.

        Overrides:
        getStringAt in class JXTable
        Parameters:
        row - the row index of the cell in view coordinates
        column - the column index of the cell in view coordinates.
        Returns:
        the string representation of the cell value as it will appear in the table.
      • getComponentAdapter

        protected ComponentAdapter getComponentAdapter()
        Returns the adapter that knows how to access the component data model. The component data adapter is used by filters, sorters, and highlighters.
        Overrides:
        getComponentAdapter in class JXTable
        Returns:
        the adapter that knows how to access the component data model