Package net.caece.fmII.hibernate

Examples of net.caece.fmII.hibernate.RegularMaintainDao


        }
    }

    public void add() {
        RegularMaintain obj = (RegularMaintain) viewToObj(null);
        RegularMaintainDao dao = new RegularMaintainDao();
        add(dao, obj);
    }
View Full Code Here


        add(dao, obj);
    }

    public void delete() {
        RegularMaintain obj = (RegularMaintain) objListbox.getSelectedItem().getValue();
        RegularMaintainDao dao = new RegularMaintainDao();
        delete(dao, obj);

        // resetting view data
       RegularMaintainForm form = new RegularMaintainForm();
       objToView(form);
View Full Code Here

        refreshObjEntities("RegularMaintain.getAll", objListRenderer);
    }

    public void update() {
        RegularMaintain obj = (RegularMaintain) objListbox.getSelectedItem().getValue();
        RegularMaintainDao dao = new RegularMaintainDao();
        update(dao, obj);
    }
View Full Code Here

TOP

Related Classes of net.caece.fmII.hibernate.RegularMaintainDao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.