Employee management system

But it's a very simple system. And with a nicer Swing GUI, which is mostly created using NetBeans design tool. It's just a simple Swing/SQL/Persistence... exercise. It stores and manges data (name, age, address, income) about employees. Application functionalities are: display of all employees, showing only certain employees according to one of the criteria, change of employee data based on criteria, deleting an employee based on the criteria and entry of new employees. Only a few classes are shown, because logic is mostly the same... And there is a bit enhanced Hibernate/HQL version. Main.java 1: package zaposlenisistem; 2: 3: import java.awt.Color; 4: import javax.swing.UIManager; 5: 6: /** 7: * 8: * @author djordje 9: */ 10: public class Main { 11: public static void main(String[] args) { 12: try { 13: UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); 14: } catch...