Magic method to check if a property exists
Note that only properties in the default namespace can be accessed in this way.
Example: if (isset($graph->title)) { blah(); }
string $name The name of the property:
EasyRdf_Namespace::setDefault()
public function __isset($name) {
return $this
->hasProperty($this->uri, $name);
}