dragging the devider in Jsplitpane

Anyone please help me!!How to drag a devider in Jsplitpane into the border?I seen that when you drag a devider , it 's not going to meet the border.Like JCreator or NetBeans when you drag the devider its goes till in theborder.
[263 byte] By [henyoa] at [2007-10-3 10:11:00]
# 1
a simple way is to use splitPane.setOneTouchExpandable(true);then click the arrow button you want
Michael_Dunna at 2007-7-15 5:31:00 > top of Java-index,Desktop,Core GUI APIs...
# 2
I mean that when I drag it not by clicking, like JCreator or netbeans dragging the devider into the border!
henyoa at 2007-7-15 5:31:00 > top of Java-index,Desktop,Core GUI APIs...
# 3
The divider respects the minimum size of the component added to the split pane. So you need code like:Dimension minimum = new Dimension(0, 0);leftComponent.setMinimumSize( minimum );rightComponent.setMinimumSize( minimum );
camickra at 2007-7-15 5:31:00 > top of Java-index,Desktop,Core GUI APIs...
# 4
Thank you!! God bless to you!
henyoa at 2007-7-15 5:31:00 > top of Java-index,Desktop,Core GUI APIs...