setSegmentoU() public method

public setSegmentoU ( DetalheSegmentoU $segmentoU )
$segmentoU DetalheSegmentoU
 /**
  * Incrementa o detalhe.
  */
 protected function incrementDetalhe()
 {
     $this->increment++;
     $detalhe = new Detalhe();
     $detalhe->setSegmentoT(new DetalheSegmentoT());
     $detalhe->setSegmentoU(new DetalheSegmentoU());
     $detalhe->setSegmentoY(new DetalheSegmentoY());
     $this->detalhe[$this->increment] = $detalhe;
 }