I have found this example :
And I would like to apply it to my JSplitPane.
So I do :
BasicSplitPaneUI bspUI=(BasicSplitPaneUI)mainContainer.getUI();
mainContainer.setUI(new ola.elementsCustom.SplitPaneDivider(bspUI));
But It gives me an error that I don't really understand :
no suitable method found for setUI() (ola.elementsCustom.SplitPaneDivider) method javax.swing.JSplitPane.setUI(javax.swing.plaf.SplitPaneUI) is not applicable ...
How can I fix that ?