home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / TextDataFileFrame.java < prev    next >
Text File  |  1998-05-08  |  3KB  |  86 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.textdatafile;
  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 TextDataFileFrame extends DecoratedFrame {
  29.   BorderLayout borderLayout1 = new BorderLayout();
  30.   BevelPanel bevelPanel1 = new BevelPanel();
  31.   StatusBar statusBar = new StatusBar();
  32.   GridControl gridControl1 = new GridControl();
  33.   NavigatorControl navigatorControl1 = new NavigatorControl();
  34.   TableDataSet tableDataSet1 = new TableDataSet();
  35.   TextDataFile textDataFile1 = new TextDataFile();
  36.   GridBagLayout gridBagLayout1 = new GridBagLayout();
  37.  
  38.   //Construct the frame
  39.   public TextDataFileFrame() {
  40.     try {
  41.       jbInit();
  42.     }
  43.     catch (Exception e) {
  44.       borland.jbcl.util.Diagnostic.printStackTrace(e);
  45.     }
  46.   }
  47.  
  48.   //Component initialization
  49.   private void jbInit() throws Exception{
  50.     this.setLayout(borderLayout1);
  51.     this.setTitle("TextDataFile Tutorial");
  52.     bevelPanel1.setLayout(gridBagLayout1);
  53.     statusBar.setDataSet(tableDataSet1);
  54.     gridControl1.setDataSet(tableDataSet1);
  55.     navigatorControl1.setDataSet(tableDataSet1);
  56.     tableDataSet1.setDataFile(textDataFile1);
  57.     textDataFile1.setFileName("employee.txt");
  58.  
  59.     gridControl1.addActionListener(new TextDataFileFrame_gridControl1_actionAdapter(this));
  60.     this.add(statusBar, BorderLayout.SOUTH);
  61.     this.add(bevelPanel1, BorderLayout.CENTER);
  62.     bevelPanel1.add(gridControl1, new GridBagConstraints2(0, 1, 1, 1, 1.0, 1.0
  63.             ,GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(0, 3, 13, 0), -782, -654));
  64.     bevelPanel1.add(navigatorControl1, new GridBagConstraints2(0, 0, 2, 1, 1.0, 0.0
  65.             ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(13, 3, 0, 3), 95, 0));
  66.   }
  67.  
  68.   
  69.   void gridControl1_actionPerformed(ActionEvent e) {
  70.  
  71.   }
  72. }
  73.  
  74. class TextDataFileFrame_gridControl1_actionAdapter implements java.awt.event.ActionListener {
  75.   TextDataFileFrame adaptee;
  76.  
  77.   TextDataFileFrame_gridControl1_actionAdapter(TextDataFileFrame adaptee) {
  78.     this.adaptee = adaptee;
  79.   }
  80.  
  81.   public void actionPerformed(ActionEvent e) {
  82.     adaptee.gridControl1_actionPerformed(e);
  83.   }
  84. }
  85.  
  86.