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

[434 byte] By [Inspiron123a] at [2007-11-26 12:22:59]
# 1
> my doubt is how can i programmatically click on the arrows of JSplitPane.Just set the divider location. However, the method only works once the GUI is visible.
camickra at 2007-7-7 15:22:22 > top of Java-index,Desktop,Core GUI APIs...