/**
  * {@inheritdoc}
  */
 public function setType($type)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'setType');
     if (!$pluginInfo) {
         return parent::setType($type);
     } else {
         return $this->___callPlugins('setType', func_get_args(), $pluginInfo);
     }
 }