home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / TestFrame.java < prev    next >
Text File  |  1998-05-08  |  2KB  |  67 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. package borland.samples.tutorial.dataset.providers;
  21.  
  22. import java.awt.*;
  23. import java.awt.event.*;
  24. import borland.jbcl.control.*;
  25. import borland.jbcl.layout.*;
  26. import java.lang.*;
  27. import borland.jbcl.dataset.*;
  28.  
  29. public class TestFrame extends DecoratedFrame {
  30.  
  31.   //Construct the frame
  32.   BorderLayout borderLayout1 = new BorderLayout();
  33.   BevelPanel bevelPanel1 = new BevelPanel();
  34.   TableDataSet tableDataSet1 = new TableDataSet();
  35.   GridControl gridControl1 = new GridControl();
  36.   NavigatorControl navigatorControl1 = new NavigatorControl();
  37.   BorderLayout borderLayout2 = new BorderLayout();
  38.   ProviderBean providerBean1 = new ProviderBean();
  39.   ResolverBean resolverBean1 = new ResolverBean();
  40.   
  41.   public TestFrame() {
  42.     try  {
  43.       jbInit();
  44.     }
  45.     catch (Exception e) {
  46.       e.printStackTrace();
  47.     }
  48.   }
  49.   
  50.   //Component initialization
  51.   private void jbInit() throws Exception  {
  52.     this.setLayout(borderLayout1);
  53.     this.setSize(new Dimension(400, 300));
  54.     this.setTitle("Frame Title");
  55.     tableDataSet1.setProvider(providerBean1);
  56.     tableDataSet1.setResolver(resolverBean1);
  57.     gridControl1.setDataSet(tableDataSet1);
  58.     navigatorControl1.setDataSet(tableDataSet1);
  59.     bevelPanel1.setLayout(borderLayout2);
  60.     this.add(bevelPanel1, BorderLayout.CENTER);
  61.     bevelPanel1.add(gridControl1, BorderLayout.CENTER);
  62.     bevelPanel1.add(navigatorControl1, BorderLayout.NORTH);
  63.   }
  64. }
  65.  
  66.        
  67.