I am learning Swings and i am confused with this one line
GroupLayout layout=new GroupLayout(getContentPane());
now i have 2 questions
- what does getContentPane() return . [i saw the docs and got more confused ]
- why are we passing it to GroupLayout , i mean how getContentPane() is used to Group Layout
It returns component's content pane
You can read about it more here
That's how GroupLayout is implemented.
Constructor:
Creates a GroupLayout for the specified Container. Please refere to javadoc for more