Paste
Pasted as Java by Bruno Moreira ( 14 years ago )
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication1;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author BMoreira
*/
public class JavaApplication1 {
private static ReadMessages a;
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
a = new ReadMessages();
try {
a.doIt();
} catch (Exception ex) {
Logger.getLogger(JavaApplication1.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
Revise this Paste