Package open.dolphin.infomodel

Examples of open.dolphin.infomodel.SimpleDate


     */
    public void setSelectedDate(Object o) {
        Object old = selectedDate;
        selectedDate = o;
        if (selectedDate instanceof String) {
            SimpleDate sd = new SimpleDate(getYear(), getMonth(), Integer.parseInt((String) selectedDate));
            selectedDate = sd;
        }
        boundSupport.firePropertyChange(SELECTED_DATE_PROP, old, selectedDate);
    }
View Full Code Here


                } else {
                    this.setForeground(getWeekdayFore());
                }

                // 休日 masuda
                SimpleDate sd = tableModel.getDate(row, col);
                if (Holiday.isHoliday(new GregorianCalendar(sd.getYear(), sd.getMonth(), sd.getDay()))) {
                    this.setForeground(getSundayFore());
                }
                // masuda
               
                // このカレンダ月内の日かどうかでフォントを変える
View Full Code Here

TOP

Related Classes of open.dolphin.infomodel.SimpleDate

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.