Uses of Class
java.awt.Container

Packages that use Container
com.jjt.utbeg   
java.applet   
java.awt   
java.awt.event   
symantec.itools.awt.util.spinner   
 

Uses of Container in com.jjt.utbeg
 

Subclasses of Container in com.jjt.utbeg
 class Applet1
          The first JJT Applet for the UT exercises: source and receiver spacing
 class BorderPanel
          A Container that allows for empty and line borders around the contained components.
 class SeismicDesignExerciseApplet
          An abstract parent class for all of the Seismic Design Exercise Applets.
 class SwathViewer
          Component for drawing the swath image used in Applet1.
 

Methods in com.jjt.utbeg that return Container
protected  Container SeismicDesignExerciseApplet.getParameterDisplayPanel()
          Returns the Container where static display Components should be placed.
protected  Container SeismicDesignExerciseApplet.getParameterInputPanel()
          Returns the Container where parameter input Components should be placed.
protected  Container SeismicDesignExerciseApplet.getViewerPanel()
          Returns the Container where the viewer Component should be placed.
 Container SeismicDesignExerciseApplet.getContentPane()
          Returns the main Container for this Applet's components.
 Container BorderPanel.getContentPane()
           
 

Methods in com.jjt.utbeg with parameters of type Container
private  void Applet1.addInfoLabel(Container panel, GridBagLayout gridbag, GridBagConstraints constraints, Component label, Component value)
          Helper method to allow createAndLayoutDisplayComponents() to use a GridBagLayout, which is a nasty mess.
 

Uses of Container in java.applet
 

Subclasses of Container in java.applet
 class Applet
          An applet is a small program that is intended not to be run on its own, but rather to be embedded inside another application.
 

Uses of Container in java.awt
 

Subclasses of Container in java.awt
 class Dialog
          A Dialog is a top-level window with a title and a border that is typically used to take some form of input from the user.
 class FileDialog
          The FileDialog class displays a dialog window from which the user can select a file.
 class Frame
          A Frame is a top-level window with a title and a border.
 class Panel
          Panel is the simplest container class.
 class ScrollPane
          A container class which implements automatic horizontal and/or vertical scrolling for a single child component.
 class Window
          A Window object is a top-level window with no borders and no menubar.
 

Fields in java.awt declared as Container
(package private)  Container Component.parent
          The parent of the object.
private  Container LightweightDispatcher.nativeContainer
          The windowed container that might be hosting events for lightweight components.
(package private)  Container Component.NativeInLightFixer.nativeHost
           
(package private)  Container FocusManager.focusRoot
           
 

Methods in java.awt that return Container
 Container Component.getParent()
          Gets the parent of this component.
(package private)  Container Component.getParent_NoClientCode()
           
(package private)  Container Component.getNativeContainer()
           
protected static Container Toolkit.getNativeContainer(Component c)
          Give native peers the ability to query the native container given a native component (eg the direct parent may be lightweight).
 

Methods in java.awt with parameters of type Container
 Dimension CardLayout.preferredLayoutSize(Container parent)
          Determines the preferred size of the container argument using this card layout.
 Dimension CardLayout.minimumLayoutSize(Container parent)
          Calculates the minimum size for the specified panel.
 Dimension CardLayout.maximumLayoutSize(Container target)
          Returns the maximum dimensions for this layout given the components in the specified target container.
 float CardLayout.getLayoutAlignmentX(Container parent)
          Returns the alignment along the x axis.
 float CardLayout.getLayoutAlignmentY(Container parent)
          Returns the alignment along the y axis.
 void CardLayout.invalidateLayout(Container target)
          Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
 void CardLayout.layoutContainer(Container parent)
          Lays out the specified container using this card layout.
(package private)  void CardLayout.checkLayout(Container parent)
          Make sure that the Container really has a CardLayout installed.
 void CardLayout.first(Container parent)
          Flips to the first card of the container.
 void CardLayout.next(Container parent)
          Flips to the next card of the specified container.
 void CardLayout.previous(Container parent)
          Flips to the previous card of the specified container.
 void CardLayout.last(Container parent)
          Flips to the last card of the container.
 void CardLayout.show(Container parent, String name)
          Flips to the component that was added to this layout with the specified name, using addLayoutComponent.
 Dimension LayoutManager2.maximumLayoutSize(Container target)
          Returns the maximum size of this component.
 float LayoutManager2.getLayoutAlignmentX(Container target)
          Returns the alignment along the x axis.
 float LayoutManager2.getLayoutAlignmentY(Container target)
          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.
 Dimension GridLayout.preferredLayoutSize(Container parent)
          Determines the preferred size of the container argument using this grid layout.
 Dimension GridLayout.minimumLayoutSize(Container parent)
          Determines the minimum size of the container argument using this grid layout.
 void GridLayout.layoutContainer(Container parent)
          Lays out the specified container using this layout.
(package private)  boolean FocusManager.focusForward(Container cont)
           
(package private)  boolean FocusManager.focusBackward(Container cont)
           
 Dimension LayoutManager.preferredLayoutSize(Container parent)
          Calculates the preferred size dimensions for the specified panel given the components in the specified parent container.
 Dimension LayoutManager.minimumLayoutSize(Container parent)
          Calculates the minimum size dimensions for the specified panel given the components in the specified parent container.
 void LayoutManager.layoutContainer(Container parent)
          Lays out the container in the specified panel.
 Dimension GridBagLayout.preferredLayoutSize(Container parent)
          Determines the preferred size of the target container using this grid bag layout.
 Dimension GridBagLayout.minimumLayoutSize(Container parent)
          Determines the minimum size of the target container using this grid bag layout.
 Dimension GridBagLayout.maximumLayoutSize(Container target)
          Returns the maximum dimensions for this layout given the components in the specified target container.
 float GridBagLayout.getLayoutAlignmentX(Container parent)
          Returns the alignment along the x axis.
 float GridBagLayout.getLayoutAlignmentY(Container parent)
          Returns the alignment along the y axis.
 void GridBagLayout.invalidateLayout(Container target)
          Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
 void GridBagLayout.layoutContainer(Container parent)
          Lays out the specified container using this grid bag layout.
protected  GridBagLayoutInfo GridBagLayout.GetLayoutInfo(Container parent, int sizeflag)
          Print the layout constraints.
protected  Dimension GridBagLayout.GetMinSize(Container parent, GridBagLayoutInfo info)
           
protected  void GridBagLayout.ArrangeGrid(Container parent)
           
 Dimension FlowLayout.preferredLayoutSize(Container target)
          Returns the preferred dimensions for this layout given the components in the specified target container.
 Dimension FlowLayout.minimumLayoutSize(Container target)
          Returns the minimum dimensions needed to layout the components contained in the specified target container.
private  void FlowLayout.moveComponents(Container target, int x, int y, int width, int height, int rowStart, int rowEnd, boolean ltr)
          Centers the elements in the specified row, if there is any slack.
 void FlowLayout.layoutContainer(Container target)
          Lays out the container.
 Dimension BorderLayout.minimumLayoutSize(Container target)
          Determines the minimum size of the target container using this layout manager.
 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 BorderLayout.maximumLayoutSize(Container target)
          Returns the maximum dimensions for this layout given the components in the specified target container.
 float BorderLayout.getLayoutAlignmentX(Container parent)
          Returns the alignment along the x axis.
 float BorderLayout.getLayoutAlignmentY(Container parent)
          Returns the alignment along the y axis.
 void BorderLayout.invalidateLayout(Container target)
          Invalidates the layout, indicating that if the layout manager has cached information it should be discarded.
 void BorderLayout.layoutContainer(Container target)
          Lays out the container argument using this border layout.
 

Constructors in java.awt with parameters of type Container
LightweightDispatcher.LightweightDispatcher(Container nativeContainer)
           
FocusManager.FocusManager(Container cont)
           
 

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 symantec.itools.awt.util.spinner
 

Subclasses of Container in symantec.itools.awt.util.spinner
 class symantec.itools.awt.util.spinner.NumericSpinner
           
 class symantec.itools.awt.util.spinner.Spinner