Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package mx.com.pydee.ejemploqr;
  7.  
  8. import com.google.zxing.WriterException;
  9. import java.util.logging.Level;
  10. import java.util.logging.Logger;
  11.  
  12. /**
  13. *
  14. * @author David
  15. */
  16. public class EjemploQR {
  17. static public void main(String[] args) {
  18. try {
  19. Ventana ventana = new Ventana();
  20.  
  21. ventana.setVisible(true);
  22.  
  23. } catch (WriterException ex) {
  24. Logger.getLogger(EjemploQR.class.getName()).log(Level.SEVERE, null, ex);
  25. }
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement