From: <rv...@us...> - 2011-06-11 22:20:38
|
Revision: 912 http://treebase.svn.sourceforge.net/treebase/?rev=912&view=rev Author: rvos Date: 2011-06-11 22:20:32 +0000 (Sat, 11 Jun 2011) Log Message: ----------- Added javadoc Modified Paths: -------------- trunk/treebase-core/src/main/java/org/cipres/treebase/domain/AbstractPersistedObject.java Modified: trunk/treebase-core/src/main/java/org/cipres/treebase/domain/AbstractPersistedObject.java =================================================================== --- trunk/treebase-core/src/main/java/org/cipres/treebase/domain/AbstractPersistedObject.java 2011-06-11 22:19:57 UTC (rev 911) +++ trunk/treebase-core/src/main/java/org/cipres/treebase/domain/AbstractPersistedObject.java 2011-06-11 22:20:32 UTC (rev 912) @@ -89,16 +89,28 @@ mVersion = pNewVersion; } + /** + * Returns an object whose string representation is of the format + * S1787 + */ @Transient public TreebaseIDString getTreebaseIDString () { return new TreebaseIDString(this); } + /** + * Returns an object whose string representation is of the format + * TB2:S1787 + */ @Transient public NamespacedGUID getNamespacedGUID () { return getTreebaseIDString().getNamespacedGUID(); } + /** + * Returns an object whose string representation is of the format + * study/TB2:1787 + */ @Transient public PhyloWSPath getPhyloWSPath() { return new PhyloWSPath(this); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |