/**
  *
  * @param integer $object
  * @param string $property
  * @param mixed $arg
  * @return mixed
  */
 public function setProperty($object, $property, $arg)
 {
     $this->protocol->propertyAccessBegin($object, $property);
     $this->writeArg($arg);
     $this->protocol->propertyAccessEnd();
     $this->getResult();
 }