From: <rv...@us...> - 2011-08-25 09:21:05
|
Revision: 938 http://treebase.svn.sourceforge.net/treebase/?rev=938&view=rev Author: rvos Date: 2011-08-25 09:20:59 +0000 (Thu, 25 Aug 2011) Log Message: ----------- Didn't yet have an ID string prefix for MatrixColumn.class. Henceforth, this shall be "Col". 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 2011-08-25 09:08:48 UTC (rev 937) +++ trunk/treebase-core/src/main/java/org/cipres/treebase/TreebaseIDString.java 2011-08-25 09:20:59 UTC (rev 938) @@ -7,6 +7,7 @@ import org.cipres.treebase.domain.matrix.DiscreteCharState; 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.PhyloChar; import org.cipres.treebase.domain.study.Algorithm; import org.cipres.treebase.domain.study.Analysis; @@ -47,6 +48,7 @@ val.put(Study.class, "S"); val.put(Matrix.class, "M"); val.put(PhyloChar.class, "C"); + val.put(MatrixColumn.class, "Col"); 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. |