Uses of Class
java.awt.Container

Packages that use Container
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.awt.event Provides interfaces and classes for dealing with different types of events fired by AWT components. 
javax.microedition.xlet Provides interfaces used by applications and the application manager to communicate. 
javax.tv.graphics   
org.havi.ui   
 

Uses of Container in java.awt
 

Subclasses of Container in java.awt
 class Frame
          A Frame is a top-level window with a title and a border.
 class Window
          A Window object is a top-level window with no borders and no menubar.
 

Methods in java.awt that return Container
 Container KeyboardFocusManager.getCurrentFocusCycleRoot()
          Returns the current focus cycle root, if the current focus cycle root is in the same context as the calling thread.
 Container Component.getFocusCycleRootAncestor()
          Returns the Container which is the focus cycle root of this Component's focus traversal cycle.
 Container Window.getFocusCycleRootAncestor()
          Always returns null because Windows have no ancestors; they represent the top of the Component hierarchy.
 Container Component.getParent()
          Gets the parent of this component.
 

Methods in java.awt with parameters of type Container
abstract  void KeyboardFocusManager.downFocusCycle(Container aContainer)
          Moves the focus down one focus traversal cycle.
 void CardLayout.first(Container parent)
          Flips to the first card of the container.
abstract  Component FocusTraversalPolicy.getComponentAfter(Container focusCycleRoot, Component aComponent)
          Returns the Component that should receive the focus after aComponent.
 Component ContainerOrderFocusTraversalPolicy.getComponentAfter(Container focusCycleRoot, Component aComponent)
          Returns the Component that should receive the focus after aComponent.
abstract  Component FocusTraversalPolicy.getComponentBefore(Container focusCycleRoot, Component aComponent)
          Returns the Component that should receive the focus before aComponent.
 Component ContainerOrderFocusTraversalPolicy.getComponentBefore(Container focusCycleRoot, Component aComponent)
          Returns the Component that should receive the focus before aComponent.
abstract  Component FocusTraversalPolicy.getDefaultComponent(Container focusCycleRoot)
          Returns the default Component to focus.
 Component ContainerOrderFocusTraversalPolicy.getDefaultComponent(Container focusCycleRoot)
          Returns the default Component to focus.
abstract  Component FocusTraversalPolicy.getFirstComponent(Container focusCycleRoot)
          Returns the first Component in the traversal cycle.
 Component ContainerOrderFocusTraversalPolicy.getFirstComponent(Container focusCycleRoot)
          Returns the first Component in the traversal cycle.
abstract  Component FocusTraversalPolicy.getLastComponent(Container focusCycleRoot)
          Returns the last Component in the traversal cycle.
 Component ContainerOrderFocusTraversalPolicy.getLastComponent(Container focusCycleRoot)
          Returns the last Component in the traversal cycle.
 float LayoutManager2.getLayoutAlignmentX(Container target)
          Returns the alignment along the x axis.
 float BorderLayout.getLayoutAlignmentX(Container parent)
          Returns the alignment along the x axis.
 float CardLayout.getLayoutAlignmentX(Container parent)
          Returns the alignment along the x axis.
 float GridBagLayout.getLayoutAlignmentX(Container parent)
          Returns the alignment along the x axis.
 float LayoutManager2.getLayoutAlignmentY(Container target)
          Returns the alignment along the y axis.
 float BorderLayout.getLayoutAlignmentY(Container parent)
          Returns the alignment along the y axis.
 float CardLayout.getLayoutAlignmentY(Container parent)
          Returns the alignment along the y axis.
 float GridBagLayout.getLayoutAlignmentY(Container parent)
          Returns the alignment along the y axis.
 void LayoutManager2.invalidateLayout(Container target)
          Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
 void BorderLayout.invalidateLayout(Container target)
          Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
 void CardLayout.invalidateLayout(Container target)
          Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
 void GridBagLayout.invalidateLayout(Container target)
          Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
 boolean Component.isFocusCycleRoot(Container container)
          Returns whether the specified Container is the focus cycle root of this Component's focus traversal cycle.
 boolean Container.isFocusCycleRoot(Container container)
          Returns whether the specified Container is the focus cycle root of this Container's focus traversal cycle.
 void CardLayout.last(Container parent)
          Flips to the last card of the container.
 void LayoutManager.layoutContainer(Container parent)
          Lays out the specified container.
 void BorderLayout.layoutContainer(Container target)
          Lays out the container argument using this border layout.
 void FlowLayout.layoutContainer(Container target)
          Lays out the container.
 void CardLayout.layoutContainer(Container parent)
          Lays out the specified container using this card layout.
 void GridLayout.layoutContainer(Container parent)
          Lays out the specified container using this layout.
 void GridBagLayout.layoutContainer(Container parent)
          Lays out the specified container using this grid bag layout.
 Dimension LayoutManager2.maximumLayoutSize(Container target)
          Calculates the maximum size dimensions for the specified container, given the components it contains.
 Dimension BorderLayout.maximumLayoutSize(Container target)
          Returns the maximum dimensions for this layout given the components in the specified target container.
 Dimension CardLayout.maximumLayoutSize(Container target)
          Returns the maximum dimensions for this layout given the components in the specified target container.
 Dimension GridBagLayout.maximumLayoutSize(Container target)
          Returns the maximum dimensions for this layout given the components in the specified target container.
 Dimension LayoutManager.minimumLayoutSize(Container parent)
          Calculates the minimum size dimensions for the specified container, given the components it contains.
 Dimension BorderLayout.minimumLayoutSize(Container target)
          Determines the minimum size of the target container using this layout manager.
 Dimension FlowLayout.minimumLayoutSize(Container target)
          Returns the minimum dimensions needed to layout the visible components contained in the specified target container.
 Dimension CardLayout.minimumLayoutSize(Container parent)
          Calculates the minimum size for the specified panel.
 Dimension GridLayout.minimumLayoutSize(Container parent)
          Determines the minimum size of the container argument using this grid layout.
 Dimension GridBagLayout.minimumLayoutSize(Container parent)
          Determines the minimum size of the parent container using this grid bag layout.
 void CardLayout.next(Container parent)
          Flips to the next card of the specified container.
 Dimension LayoutManager.preferredLayoutSize(Container parent)
          Calculates the preferred size dimensions for the specified container, given the components it contains.
 Dimension BorderLayout.preferredLayoutSize(Container target)
          Determines the preferred size of the target container using this layout manager, based on the components in the container.
 Dimension FlowLayout.preferredLayoutSize(Container target)
          Returns the preferred dimensions for this layout given the visible components in the specified target container.
 Dimension CardLayout.preferredLayoutSize(Container parent)
          Determines the preferred size of the container argument using this card layout.
 Dimension GridLayout.preferredLayoutSize(Container parent)
          Determines the preferred size of the container argument using this grid layout.
 Dimension GridBagLayout.preferredLayoutSize(Container parent)
          Determines the preferred size of the parent container using this grid bag layout.
 void CardLayout.previous(Container parent)
          Flips to the previous card of the specified container.
 void CardLayout.show(Container parent, String name)
          Flips to the component that was added to this layout with the specified name, using addLayoutComponent.
 

Uses of Container in java.awt.event
 

Methods in java.awt.event that return Container
 Container ContainerEvent.getContainer()
          Returns the originator of the event.
 

Uses of Container in javax.microedition.xlet
 

Methods in javax.microedition.xlet that return Container
 Container XletContext.getContainer()
          Get the parent container for an Xlet to put its AWT components in.
 

Uses of Container in javax.tv.graphics
 

Methods in javax.tv.graphics that return Container
static Container TVContainer.getRootContainer(XletContext ctx)
          Get the parent container for an Xlet to put its AWT components in, if the Xlet has a graphical representation.
 

Uses of Container in org.havi.ui
 

Subclasses of Container in org.havi.ui
 class HContainer
          The HContainer class extends the java.awt.Container class by implementing the HMatteLayer interface and providing additional Z-ordering capabilities, which are required since components in the HAVi user-interface are explicitly allowed to overlap each other.
 class HScene
          An HScene is a container representing the displayable area on-screen within which the application can display itself and thus interact with the user.
 

Methods in org.havi.ui with parameters of type Container
 Rectangle HGraphicsConfiguration.getPixelCoordinatesHScreenRectangle(HScreenRectangle sr, Container cont)
          Returns a java.awt.Rectangle which contains the graphics (AWT) pixel area for an HScreenRectangle relative to the supplied java.awt.Container.