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

import javax.swing.JFrame;
import java.awt.Container;
import java.awt.Component;

public class OpcionesCliente {

  public void inicia(OpcionCapturaFactoryIF fabr,int tipo) {
   String [] opciones = {"anakin","luke","yoda"};
   JFrame frame = new JFrame("OpcionCaptura");
   Container contentPane = frame.getContentPane();
   OpcionCaptura gui= fabr.creaCaptura(tipo);
   gui.opciones(opciones);
   contentPane.add((Component)gui);
   frame.pack();
   frame.show();
  }

} //End of class OpcionesCliente
