Пример #1
0
 /**
  * Copies the values from current object into passed-in Domain.
  *
  * @param Domain $domain Domain to copy values into.
  */
 public function copy(Domain $domain)
 {
     $this->defaultValue = $domain->getDefaultValue();
     $this->description = $domain->getDescription();
     $this->name = $domain->getName();
     $this->scale = $domain->getScale();
     $this->size = $domain->getSize();
     $this->sqlType = $domain->getSqlType();
     $this->originSqlType = $domain->getOriginSqlType();
     $this->mappingType = $domain->getType();
 }