At the moment, when you try to manually resize a TopComponent, it will show a black line showing the future size of the TopComponent.

I’d like to know what is the JComponent behind this black line? And how can i access it?
EDIT
The first part of my question was answered. The component shown in the attached picture is a JSplitPane.
Right now, i’d like to be able to access it (i.e get the instance of the JSplitPane‘s used for TopComponent resizing in the netbeans platform.
there is JSplitPane,
but not sure if Netbeans is compiled in Java (in compare with Eclipse)
EDIT
I'd like to add a listener on it.add PropertyChangeListener to the JSplitPane,
there are a few usefull methods for
if (propertyName.equals(JSplitPane.XxxXxx))notice for Nested JSplitPane, have to add listener for each of JSplitPanes separatelly
for example
.