Package org.cipres.treebase.domain.matrix

Examples of org.cipres.treebase.domain.matrix.StandardMatrix.addColumn()


    DiscreteChar dnaChar = (DiscreteChar) dnaType.getDefaultCharacter();
    assertTrue("Failed to load dna character", dnaChar != null);

    MatrixColumn c1 = new MatrixColumn();
    c1.setCharacter(dnaChar);
    matrix.addColumn(c1);

    MatrixColumn c2 = new MatrixColumn();
    c2.setCharacter(dnaChar);
    matrix.addColumn(c2);
View Full Code Here


    c1.setCharacter(dnaChar);
    matrix.addColumn(c1);

    MatrixColumn c2 = new MatrixColumn();
    c2.setCharacter(dnaChar);
    matrix.addColumn(c2);

    // add two rows:
    TaxonLabel taxonLabel = new TaxonLabel();
    taxonLabel.setTaxonLabel(newName);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.