You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bi...@apache.org on 2012/04/18 06:44:02 UTC

svn commit: r1327372 - /gump/trunk/python/gump/core/model/property.py

Author: billbarker
Date: Wed Apr 18 04:44:02 2012
New Revision: 1327372

URL: http://svn.apache.org/viewvc?rev=1327372&view=rev
Log:
try again to late evaluate references

Modified:
    gump/trunk/python/gump/core/model/property.py

Modified: gump/trunk/python/gump/core/model/property.py
URL: http://svn.apache.org/viewvc/gump/trunk/python/gump/core/model/property.py?rev=1327372&r1=1327371&r2=1327372&view=diff
==============================================================================
--- gump/trunk/python/gump/core/model/property.py (original)
+++ gump/trunk/python/gump/core/model/property.py Wed Apr 18 04:44:02 2012
@@ -53,6 +53,11 @@ class Property(NamedModelObject):
         """
         Get a value
         """
+        if self.output :
+            if self.reference == 'jarpath' or self.reference == 'outputpath':
+                self.setValue(self.output.getPath())
+            else:
+                self.setValue(self.output.getName())
         return self.value
 
     # provide default elements when not defined in xml