Diff for /FM2SQL/Attic/FM2SQL.java between versions 1.13 and 1.15

version 1.13, 2004/01/19 08:24:37 version 1.15, 2004/02/10 12:52:30
Line 117  public class FM2SQL extends JFrame imple Line 117  public class FM2SQL extends JFrame imple
     box2 = new JComboBox();      box2 = new JComboBox();
     box3 = new JComboBox(new String[] { "jdbc:fmpro:http://141.14.237.74:8050", "jdbc:fmpro:http://localhost", "jdbc:postgresql://foxridge/test" });      box3 = new JComboBox(new String[] { "jdbc:fmpro:http://141.14.237.74:8050", "jdbc:fmpro:http://localhost", "jdbc:postgresql://foxridge/test" });
     box3.setEditable(true);      box3.setEditable(true);
       box3.setFont(new Font("Times New Roman",Font.PLAIN,12));
     box4 = new JComboBox(new String[] { "jdbc:postgresql://foxridge/test", "jdbc:postgresql://erebos/test1" });      box4 = new JComboBox(new String[] { "jdbc:postgresql://foxridge/test", "jdbc:postgresql://erebos/test1" });
     box4.setEditable(true);      box4.setEditable(true);
     box4.addActionListener(this);      box4.addActionListener(this);
       box4.setFont(new Font("Times New Roman",Font.PLAIN,12));
     table = new TableComponent();      table = new TableComponent();
     box = new JComboBox(tables);      box = new JComboBox(tables);
     box.addActionListener(this);      box.addActionListener(this);
Line 778  public class FM2SQL extends JFrame imple Line 780  public class FM2SQL extends JFrame imple
     {      {
       fmInstance.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));        fmInstance.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
       fmInstance.setEnabled(false);        fmInstance.setEnabled(false);
       Convert.convert(bean.url, box4.getSelectedItem().toString(), vectors[0], vectors[1],vectors[2],vectors[3],mode);        Convert.convert(bean.url, box4.getSelectedItem().toString(), vectors[0], vectors[1],vectors[2],vectors[3],vectors[4],mode);
   
       destBean.setConnection((String) box4.getSelectedItem());        destBean.setConnection((String) box4.getSelectedItem());
       DefaultListModel model = new DefaultListModel();        DefaultListModel model = new DefaultListModel();

Removed from v.1.13  
changed lines
  Added in v.1.15


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>