home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1995 November / PCWK1195.iso / inne / win95 / sieciowe / hotja32.lzh / hotjava / classsrc / awt / containerlayout.java < prev    next >
Text File  |  1995-08-11  |  2KB  |  59 lines

  1. /*
  2.  * @(#)ContainerLayout.java    1.7 95/01/31 Arthur van Hoff
  3.  *
  4.  * Copyright (c) 1994 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 awt;
  20.  
  21. /**
  22.  * A layout object (abstract class). There are serveral subclasses of
  23.  * this class that layout containers in various ways. To layout a
  24.  * container you need to call Layout(container). 
  25.  *
  26.  * @version 1.7 31 Jan 1995
  27.  * @author Arthur van Hoff
  28.  */
  29. public class ContainerLayout {
  30.     static final int NORTH = 0;
  31.     static final int EAST  = 1;
  32.     static final int SOUTH = 2;
  33.     static final int WEST  = 3;
  34.  
  35.     /**
  36.      * Return the preferred size of this layout given the size of
  37.      * pTarget. 
  38.      */
  39.     public Dimension getPreferredSize(Container pTarget) {
  40.     return new Dimension(pTarget.width, pTarget.height);
  41.     }
  42.  
  43.     /**
  44.      * Return the minimum dimensions of this layout.
  45.      */
  46.     public Dimension minDimension(Container pTarget) {
  47.     return getPreferredSize(pTarget);
  48.     }
  49.  
  50.     /**
  51.      * Layout the target container.
  52.      */
  53.     public abstract void layout(Container pTarget);
  54.  
  55.     protected int getInsets(Container pTarget)[] {
  56.     return pTarget.insets;
  57.     }
  58. }
  59.