I am looking for a way to add a tooltip and/or name to the divider in a JSplitPane. I do not know if it is even possible to do this.
Printable View
I am looking for a way to add a tooltip and/or name to the divider in a JSplitPane. I do not know if it is even possible to do this.
Depends on what you put on or in your splitPane I think...
If you put a label or somthing on your Pane you have to add the ToolTip on that label...
Hope you get it... don't know much about it but just want to help...
ex.
command.addActionListener(this);
this.add(command, BorderLayout.NORTH);
command.setToolTipText("Geef een SQL commando ");
or you could use mouseOver events on the splitpane to work out where the pointer is, and show a tooltip when it is in the right place..