+3 votes
in Mathematics by kratos

What are top-level containers? What is their significance?

1 Answer

+4 votes
by kratos
 
Best answer
  • The top level containers are JFrame, JDialog, JApplet.
  • Top level containers and all its child components can be moved, hidden, shown, etc. in a single operation e.g., if you move a container then its child components also move with it; if you hide a container then all of its child controls also get hidden.
...