public function equals($object_)
 {
     if ($object_ instanceof self) {
         return String::equal((string) $this, (string) $this);
     }
     return false;
 }
 /**
  * @see \Components\Object::equals() \Components\Object::equals()
  */
 public function equals($object_)
 {
     if ($object_ instanceof self) {
         return String::equal($this->m_path, $object_->m_path);
     }
     return false;
 }