In terms of a triple, such as "S P O". I created a Reification, and want to create another triple for it;
The example is to record the appearance time of the triple: ------------------------------ Property apearAmount = model.CreateProperty(NS+"apearTimes"); ReifiedStatement reiStmt = model.createStatement(sub, pro, obj).createReifiedStatement(); reiStmt.addProperty(appearAmount, "23"); ----------------------------- Next time, when I create the same reiStmt, I can not get the corresponding property. Can anyone help me? Thanks in advance~
