/**
  * Creates a form to delete a Applicant entity.
  *
  * @param Applicant $applicant The Applicant entity
  *
  * @return \Symfony\Component\Form\Form The form
  */
 private function createDeleteForm(Applicant $applicant)
 {
     return $this->createFormBuilder()->setAction($this->generateUrl('applicant_delete', array('id' => $applicant->getId())))->setMethod('DELETE')->getForm();
 }
 /**
  * {@inheritDoc}
  */
 public function getMarkingScheme()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getMarkingScheme', array());
     return parent::getMarkingScheme();
 }