Package org.moltools.workbench.gui

Examples of org.moltools.workbench.gui.DefaultSequenceTableModel


      }
      catch (DuplicateIDException e) {
        //Should not happen here
      }
    }
    SequenceTableModel model = new DefaultSequenceTableModel(tempshow);
    ProbeTable table = new ProbeTable(model);

    //Prompt the user to select a probe from the tempprobes
    Object obj = JOptionPane.showInputDialog(null, new JScrollPane(table),
                                             Messages.getString("GUISelector.TITLE_SELECT"), //$NON-NLS-1$
View Full Code Here


          targets.add((ProbeMakerTarget) s);
        }
        resultsTable = new TargetTable(new TargetTableModel(new ListSequenceDB<ProbeMakerTarget>()));
      }
      else if (seq instanceof Probe) {
        resultsTable = new ProbeTable(new DefaultSequenceTableModel(db));
      }
    }

    //Create and add scrollPane
    JScrollPane scrollPane = new JScrollPane(resultsTable);
View Full Code Here

    JPanel probeButtonPane = new JPanel(new FlowLayout(FlowLayout.LEFT));   
    UserAction[] probeActions = probeMaker.probeActions;   
    for (int i = 0;i<probeActions.length;i++) {
      probeButtonPane.add(newJButton(probeActions[i]));     
    }   
    probeModel = new DefaultSequenceTableModel();
    probeTable = new ProbeTable(probeModel);
    new ProbeMakerProbeTableListener(probeMaker, probeTable, probeModel);
    probeScrollPane = new JScrollPane();
    probeScrollPane.getViewport().add(probeTable, null);
    probePane = new JPanel();
View Full Code Here

TOP

Related Classes of org.moltools.workbench.gui.DefaultSequenceTableModel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.