Doubt on JSplitPane
hi,
I have two JPanels separated by JSplitPane.
JSplitPane splitPaneRight =new JSplitPane(JSplitPane.VERTICAL_SPLIT, panel1, panel2);
splitPaneRight.setDividerLocation(140);
splitPaneRight.setOneTouchExpandable(true);
my doubt is how can i programmatically click on the arrows of JSplitPane.
can any help me.
Thank you

