return node ;
// Check it's a well-formed reification by Jena's uniqueness rules
// No fragments (we checked for exact match by getTriple(node))
if ( graph.contains(node, subject, Node.ANY) )
throw new CannotReifyException(node) ;
if ( graph.contains(node, predicate, Node.ANY) )
throw new CannotReifyException(node) ;
if ( graph.contains(node, object, Node.ANY) )
throw new CannotReifyException(node) ;
}
graph.add(new Triple(node, rdfType, statement)) ;
graph.add(new Triple(node, subject, triple.getSubject())) ;
graph.add(new Triple(node, predicate, triple.getPredicate())) ;