/**
  * The "Relation_Stats_Eps" constructor
  *
  * @param string $master_table  The master table name
  * @param string $master_field  The relation field in the master table
  * @param string $foreign_table The foreign table name
  * @param string $foreign_field The relation field in the foreign table
  */
 function __construct($master_table, $master_field, $foreign_table, $foreign_field)
 {
     $this->wTick = 10;
     parent::__construct($master_table, $master_field, $foreign_table, $foreign_field);
     $this->ySrc += 10;
     $this->yDest += 10;
 }
 /**
  * The "Relation_Stats_Pdf" constructor
  *
  * @param string $master_table  The master table name
  * @param string $master_field  The relation field in the master table
  * @param string $foreign_table The foreign table name
  * @param string $foreign_field The relation field in the foreign table
  */
 function __construct($master_table, $master_field, $foreign_table, $foreign_field)
 {
     $this->wTick = 5;
     parent::__construct($master_table, $master_field, $foreign_table, $foreign_field);
 }
 /**
  * The "Relation_Stats_Svg" constructor
  *
  * @param object $diagram       The SVG diagram
  * @param string $master_table  The master table name
  * @param string $master_field  The relation field in the master table
  * @param string $foreign_table The foreign table name
  * @param string $foreign_field The relation field in the foreign table
  */
 public function __construct($diagram, $master_table, $master_field, $foreign_table, $foreign_field)
 {
     $this->wTick = 10;
     parent::__construct($diagram, $master_table, $master_field, $foreign_table, $foreign_field);
 }