What is the deference between Container and Content pane?

What is the deference between Container and Content pane?Can you give me some examples!
[101 byte] By [masin50a] at [2007-11-26 19:08:53]
# 1
Examples... *sigh*No difference. "Content pane" is a description of what something means to a frame. Container is what whatever resembles the content pane extends from.
CeciNEstPasUnProgrammeura at 2007-7-9 21:03:14 > top of Java-index,Java Essentials,New To Java...
# 2
What's the difference between a thing to carry other things around, and a tray?
CeciNEstPasUnProgrammeura at 2007-7-9 21:03:14 > top of Java-index,Java Essentials,New To Java...
# 3

A content pane is the "layer" of the frame which is used to display components, or content. A frame is a container, just like a JPanel, or anything else that descends from the Container class and is used to "hold" other components. So basically frames have content panes, content panes can be considered containers, and frames also are therefore containers in their own right. Look into the JFrame tutorial for more info.

michael.paynea at 2007-7-9 21:03:14 > top of Java-index,Java Essentials,New To Java...