/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package controller;
import javax.swing.UIManager;
import view.ServidorView;
/**
*
* @author Consult
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
}
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new ServidorView().setVisible(true);
}
});
}
}