01: package org.garret.rdf;
02:
03: import org.garret.perst.*;
04:
05: /**
06: * Object property
07: */
08: public class PropVal implements IValue {
09: /**
10: * Reference to property defintion (name of the property)
11: */
12: public PropDef def;
13:
14: /**
15: * Property value
16: */
17: public Object val;
18: }
|