Posted by alexfromsun on September 7, 2011 at 12:13 PM EDT
Swing makes it very easy to control and modify simple components like JLabel or JButton. It gets trickier when you customize a compound component like JTree or JTable. Unlike a simple component, JTable consists of multiple subcomponents like table header, renderer and editor, so actually JTable is not a single component but a container with several descendants.
Imagine that you want to customize a JLabel to change its border when you move the ...
(more)