Package versusSNP.util.swing

Examples of versusSNP.util.swing.JIntEdit


  private JIntEdit txtScore, txtOverlap;
 
  public AlignTab() {
    super(new GridLayout(9,1));
    txtThresholds = new JTextField(Parameter.blast_run_thresholds);
    txtOverlap = new JIntEdit(Parameter.blast_filter_overlap);
    txtScore = new JIntEdit(Parameter.blast_filter_score);
    selector1 = new JComboBox(BlastExecutor.MATRICES);
    txtThresholds.setToolTipText(UICaption.tooltip_label_run_blast_thresholds);
    selector1.setSelectedItem(Parameter.blast_run_matrix);
    JPanel panel1 = new JPanel(new GridLayout(1,2));
    JPanel panel2 = new JPanel(new GridLayout(1,2));
View Full Code Here

TOP

Related Classes of versusSNP.util.swing.JIntEdit

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.