home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / framenoschemaFrame1.java < prev    next >
Text File  |  1998-05-08  |  3KB  |  78 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.framenoschema;
  21.  
  22. import java.awt.*;
  23. import java.awt.event.*;
  24. import borland.jbcl.control.*;
  25. import borland.jbcl.layout.*;
  26. import borland.jbcl.dataset.*;
  27.  
  28. public class framenoschemaFrame1 extends DecoratedFrame {
  29.   BorderLayout borderLayout1 = new BorderLayout();
  30.   BevelPanel bevelPanel1 = new BevelPanel();
  31.   StatusBar statusBar = new StatusBar();
  32.   TableDataSet tableDataSet1 = new TableDataSet();
  33.   TextDataFile textDataFile1 = new TextDataFile();
  34.   GridControl gridControl1 = new GridControl();
  35.   NavigatorControl navigatorControl1 = new NavigatorControl();
  36.   NavigatorControl navigatorControl2 = new NavigatorControl();
  37.   Column column1 = new Column();
  38.   Column column2 = new Column();
  39.   GridBagLayout gridBagLayout1 = new GridBagLayout();
  40.  
  41.   //Construct the frame
  42.   public framenoschemaFrame1() {
  43.     try {
  44.       jbInit();
  45.     }
  46.     catch (Exception e) {
  47.       e.printStackTrace();
  48.     }
  49.   }
  50.  
  51.   //Component initialization
  52.   private void jbInit() throws Exception{
  53.     this.setLayout(borderLayout1);
  54.     this.setSize(new Dimension(395, 300));
  55.     this.setTitle("TextDataFile Without Schema File");
  56.     statusBar.setDataSet(tableDataSet1);
  57.     tableDataSet1.setDataFile(textDataFile1);
  58.     textDataFile1.setFileName("employeexx.txt");
  59.     textDataFile1.setSeparator(",");
  60.     gridControl1.setDataSet(tableDataSet1);
  61.     navigatorControl2.setDataSet(tableDataSet1);
  62.     column1.setColumnName("my_number");
  63.     column1.setDataType(borland.jbcl.util.Variant.SHORT);
  64.     column2.setColumnName("my_string");
  65.     column2.setDataType(borland.jbcl.util.Variant.STRING);
  66.     bevelPanel1.setLayout(gridBagLayout1);
  67.     this.add(statusBar, BorderLayout.SOUTH);
  68.     this.add(bevelPanel1, BorderLayout.CENTER);
  69.     bevelPanel1.add(gridControl1, new GridBagConstraints2(0, 0, 2, 2, 1.0, 1.0
  70.             ,GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(-1, 0, -1, 0), 165, 140));
  71.     bevelPanel1.add(navigatorControl1, new GridBagConstraints2(0, 1, 1, GridBagConstraints.REMAINDER, 1.0, 0.0
  72.             ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 53, 0, 0), -291, -24));
  73.     this.add(navigatorControl2, BorderLayout.NORTH);
  74.     tableDataSet1.setColumns(new Column[] {column1, column2});
  75.   }
  76. }
  77.  
  78.