GetString now returns the foreign key for node properties.

linking to something other than the primary key is probably
(still) broken.
This commit is contained in:
hns 2001-08-04 11:41:26 +00:00
parent 157f7bba7f
commit f9386a2286

View file

@ -303,7 +303,7 @@ public final class Property implements IProperty, Serializable, Cloneable {
case FLOAT:
return Double.toString (dvalue);
case NODE:
return nhandle.toString ();
return nhandle.getID ();
case JAVAOBJECT:
return jvalue.toString ();
}