示例#1
0
 /**
  * Answer a reification of a statement with a given uri. If that uri already reifies a distinct
  * Statement, throw an AlreadyReifiedException.
  *
  * @param uri the URI of the resource which will reify <code>s</code>
  * @param s the Statement to reify
  * @return a reified statement object associating <code>uri</code> with <code>s</code>.
  * @throws AlreadyReifiedException if uri already reifies something else.
  */
 public ReifiedStatement createReifiedStatement(String uri, Statement s) {
   return ReifiedStatementImpl.create(model, uri, s);
 }