Package net.caece.fmII.hibernate

Examples of net.caece.fmII.hibernate.MaintainEventTypeDao


        refreshObjEntities();
    }

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


        add(dao, obj);
    }

    public void delete() {
        MaintainEventType obj = (MaintainEventType) objListbox.getSelectedItem().getValue();
        MaintainEventTypeDao dao = new MaintainEventTypeDao();
        delete(dao, obj);
    }
View Full Code Here

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

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

TOP

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

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.