コード例 #1
0
ファイル: ResModel.php プロジェクト: p4535992/programate
 /**
  * Removes the statement of ResResources(ResTriples) from the MemModel. 
  * TRUE if the statement is removed.
  * FALSE otherwise.
  *
  * @param	object Statement	$statement
  * @return   boolean
  * @access	public
  * @throws	PhpError
  */
 function remove($statement)
 {
     return $this->model->remove(new Statement($this->_resNode2Node($statement->getSubject()), $this->_resNode2Node($statement->getPredicate()), $this->_resNode2Node($statement->getObject())));
 }