home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / java.z / LayoutManager.java < prev    next >
Text File  |  1996-05-03  |  2KB  |  68 lines

  1. /*
  2.  * @(#)LayoutManager.java    1.12 95/12/14 Sami Shaio
  3.  *
  4.  * Copyright (c) 1994-1995 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software
  7.  * and its documentation for NON-COMMERCIAL purposes and without
  8.  * fee is hereby granted provided that this copyright notice
  9.  * appears in all copies. Please refer to the file "copyright.html"
  10.  * for further important copyright and licensing information.
  11.  *
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  13.  * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  14.  * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  15.  * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  16.  * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  17.  * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  18.  */
  19. package java.awt;
  20.  
  21. /** 
  22.  * Defines the interface for classes that know how to layout Containers.
  23.  *
  24.  * @see Container
  25.  *
  26.  * @version    1.12, 14 Dec 1995
  27.  * @author     Sami Shaio
  28.  * @author     Arthur van Hoff
  29.  */
  30. public interface LayoutManager {
  31.     /**
  32.      * Adds the specified component with the specified name to
  33.      * the layout.
  34.      * @param name the component name
  35.      * @param comp the component to be added
  36.      */
  37.     void addLayoutComponent(String name, Component comp);
  38.  
  39.     /**
  40.      * Removes the specified component from the layout.
  41.      * @param comp the component ot be removed
  42.      */
  43.     void removeLayoutComponent(Component comp);
  44.  
  45.     /**
  46.      * Calculates the preferred size dimensions for the specified 
  47.      * panel given the components in the specified parent container.
  48.      * @param parent the component to be laid out
  49.      *  
  50.      * @see #minimumLayoutSize
  51.      */
  52.     Dimension preferredLayoutSize(Container parent);
  53.  
  54.     /** 
  55.      * Calculates the minimum size dimensions for the specified 
  56.      * panel given the components in the specified parent container.
  57.      * @param parent the component to be laid out
  58.      * @see #preferredLayoutSize
  59.      */
  60.     Dimension minimumLayoutSize(Container parent);
  61.  
  62.     /** 
  63.      * Lays out the container in the specified panel.
  64.      * @param parent the component which needs to be laid out 
  65.      */
  66.     void layoutContainer(Container parent);
  67. }
  68.