public Datebox getDateboxFecha(
     String pcodigo_historia, String tipo_examen, String codigo_examen) {
   Datebox datebox_fecha = null;
   if (contenedor.hasFellow(
       "datebox_fecha_" + tipo_examen + "_" + pcodigo_historia + "_" + codigo_examen)) {
     datebox_fecha =
         (Datebox)
             contenedor.getFellow(
                 "datebox_fecha_" + tipo_examen + "_" + pcodigo_historia + "_" + codigo_examen);
   }
   return datebox_fecha;
 }
 public Textbox getTextboxFecha(
     String pcodigo_historia, String tipo_examen, String codigo_examen) {
   Textbox textbox_fecha = null;
   if (contenedor.hasFellow(
       "datebox_fecha_" + tipo_examen + "_" + pcodigo_historia + "_" + codigo_examen)) {
     textbox_fecha =
         (Textbox)
             contenedor.getFellow(
                 "textbox_resultado_"
                     + tipo_examen
                     + "_"
                     + pcodigo_historia
                     + "_"
                     + codigo_examen);
   }
   return textbox_fecha;
 }