/**
  * Get a textual representation of the property for this relation.
  *
  * @uses ItemRelationsProperty::getText()
  * @return string
  */
 public function getPropertyText()
 {
     $property = new ItemRelationsProperty();
     $property->local_part = $this->property_local_part;
     $property->label = $this->property_label;
     $property->vocabulary_namespace_prefix = $this->vocabulary_namespace_prefix;
     return $property->getText();
 }