Package versusSNP.util.struct

Examples of versusSNP.util.struct.MyInteger


  private JComboBox selector1;
  private JComboBox selector2;
  private MyInteger id1, id2;
 
  public QuerySubjectSelectDialog(String[] genomeNames) {
    id1 = new MyInteger(0);
    id2 = new MyInteger(1);
    selector1 = new JComboBox(genomeNames);
    selector2 = new JComboBox(genomeNames);
    selector1.setSelectedIndex(id1.intValue());
    selector2.setSelectedIndex(id2.intValue());
    selector1.setPreferredSize(Size.dialog_combobox_selector);
View Full Code Here


  private JTextField txtThresholds;
  private JCheckBox cbFilters;

  public RunBlastDialog(String[] genomeNames) {
    super();
    id1 = new MyInteger(0);
    id2 = new MyInteger(1);
    selector1 = new JComboBox(genomeNames);
    selector2 = new JComboBox(genomeNames);
    selector3 = new JComboBox(new Object[]{"BLASTN"});
    selector4 = new JComboBox(BlastExecutor.MATRICES);
    txtThresholds = new JTextField(Parameter.blast_run_thresholds);
View Full Code Here

  private JTextField txtPath;
  private JButton btnBrowse;
  private StringBuffer path;
 
  public AlignmentLoaderDialog(String[] genomeNames) {
    id1 = new MyInteger(0);
    id2 = new MyInteger(1);
    selector1 = new JComboBox(genomeNames);
    selector2 = new JComboBox(genomeNames);
    selector1.setSelectedIndex(id1.intValue());
    selector2.setSelectedIndex(id2.intValue());
    selector1.setPreferredSize(Size.dialog_combobox_selector);
View Full Code Here

  private JButton btnBrowse;
  private StringBuffer path;

  public SNPExporterDialog() {
    super();
    id = new MyInteger(0);
    path = new StringBuffer();
    panel = new JPanel(new FlowLayout(FlowLayout.LEFT));
    txtPath = new JTextField();
    btnBrowse = new JButton(UICaption.dialog_caption_browse);
    selector = new JComboBox(new Object[] { UICaption.panel_caption_s,
View Full Code Here

TOP

Related Classes of versusSNP.util.struct.MyInteger

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.