Package beans.doctor.sicklist.search

Examples of beans.doctor.sicklist.search.SicklistFilter


    /** Creates new form PanelCreateDeseaseList */
    public PanelSicklistSearch(PageContainer container) throws ClipsException {
        super(container);
        initComponents();
        sicklistSearch = new SicklistSearchLocal(getAuditManager());
        filter = new SicklistFilter();
        GregorianCalendar gc = TimeLocal.getCurrentTime();
        gc.setTime(gc.getTime());
        gc.add(Calendar.MONTH, -1);
        dchFromDate.setDate(gc.getTime());
        dchTillDate.setDate(TimeLocal.getCurrentTime().getTime());
View Full Code Here

TOP

Related Classes of beans.doctor.sicklist.search.SicklistFilter

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.