|
From: <rv...@us...> - 2009-06-28 10:14:11
|
Revision: 137
http://treebase.svn.sourceforge.net/treebase/?rev=137&view=rev
Author: rvos
Date: 2009-06-28 10:11:30 +0000 (Sun, 28 Jun 2009)
Log Message:
-----------
Implemented interface methods
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 2009-06-28 10:11:14 UTC (rev 136)
+++ trunk/treebase-core/src/main/java/org/cipres/treebase/domain/AbstractPersistedObject.java 2009-06-28 10:11:30 UTC (rev 137)
@@ -32,6 +32,7 @@
import javax.persistence.Version;
import org.cipres.treebase.NamespacedGUID;
+import org.cipres.treebase.PhyloWSPath;
import org.cipres.treebase.TreebaseIDString;
/**
@@ -111,5 +112,10 @@
public NamespacedGUID getNamespacedGUID () {
return getTreebaseIDString().getNamespacedGUID();
}
+
+ @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.
|