From: <rv...@us...> - 2012-02-06 19:48:18
|
Revision: 1057 http://treebase.svn.sourceforge.net/treebase/?rev=1057&view=rev Author: rvos Date: 2012-02-06 19:48:09 +0000 (Mon, 06 Feb 2012) Log Message: ----------- Adding ID prefix ("Row") for MatrixRows Modified Paths: -------------- trunk/treebase-core/src/main/java/org/cipres/treebase/TreebaseIDString.java Modified: trunk/treebase-core/src/main/java/org/cipres/treebase/TreebaseIDString.java =================================================================== --- trunk/treebase-core/src/main/java/org/cipres/treebase/TreebaseIDString.java 2012-02-05 19:24:29 UTC (rev 1056) +++ trunk/treebase-core/src/main/java/org/cipres/treebase/TreebaseIDString.java 2012-02-06 19:48:09 UTC (rev 1057) @@ -8,6 +8,7 @@ import org.cipres.treebase.domain.matrix.DiscreteMatrixElement; import org.cipres.treebase.domain.matrix.Matrix; import org.cipres.treebase.domain.matrix.MatrixColumn; +import org.cipres.treebase.domain.matrix.MatrixRow; import org.cipres.treebase.domain.matrix.PhyloChar; import org.cipres.treebase.domain.study.Algorithm; import org.cipres.treebase.domain.study.Analysis; @@ -49,6 +50,7 @@ val.put(Matrix.class, "M"); val.put(PhyloChar.class, "C"); val.put(MatrixColumn.class, "Col"); + val.put(MatrixRow.class, "Row"); val.put(DiscreteCharState.class, "Dcs"); val.put(DiscreteMatrixElement.class, "Dme"); val.put(PhyloTree.class, "Tr"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |