Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package unsch.efpis.pruebas;
- import java.io.IOException;
- import javax.mail.MessagingException;
- import unsch.efpis.controlador.ControladorBandejaDeEntrada;
- import unsch.efpis.vista.VistaBandejaDeEntrada;
- /**
- * @author [email protected]
- * Mi blog, http://javaenaccion.blogspot.com
- */
- public class Pruebas {
- public static void main(String[] args) throws IOException, MessagingException {
- VistaBandejaDeEntrada vbde = new VistaBandejaDeEntrada();
- ControladorBandejaDeEntrada cbde = new ControladorBandejaDeEntrada(vbde);
- cbde.iniciarVistaBandejaDeEntrada();
- vbde.setVisible(true);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment