//This file generated automatically from the MARIUS LP system, please do not edit.

public class OpcionCapturaFactory implements OpcionCapturaFactoryIF {

public OpcionCaptura creaCaptura(int tipo) {
  if (tipo==OpcionCapturaFactoryIF.LISTA) {
    return new ListaCaptura();
  } else if ( tipo ==OpcionCapturaFactoryIF.COMBO) {
    return new ComboCaptura();
  } else { return null; }
}

} //End of class OpcionCapturaFactory
