home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / EastPanel.java < prev    next >
Text File  |  1997-07-03  |  600b  |  23 lines

  1. package borland.samples.apps.chess.client;
  2.  
  3. import java.awt.*;
  4.  
  5. public class EastPanel extends Panel {
  6.   Component sibling;
  7.   public EastPanel() {
  8.  
  9.   }
  10.   public EastPanel(Component c) {
  11.     sibling = c;
  12.   }
  13.   public void setSibling(Component sibling) {
  14.     this.sibling = sibling;
  15.   }
  16.   public Dimension getPreferredSize()   {
  17.     int siblingHeight = 280;
  18.     if (sibling != null)
  19.       siblingHeight = sibling.getPreferredSize().height;
  20.     //System.out.println("east Panel prefered size = 280," +( siblingHeight + 60));
  21.     return new Dimension(280, siblingHeight + 60);
  22.   }
  23. }