public function getRaw()
 {
     if ($this->raw === self::INHERIT_VALUE) {
         return $this->context->getRaw();
     }
     return $this->raw;
 }
 public function getRaw()
 {
     if (!is_null($this->raw)) {
         return $this->raw;
     } else {
         return $this->context->getRaw();
     }
 }