# File lib/tapkit/control/date_and_time.rb, line 61
                def ===( other )
                        if (@year == other.year) and (@month == other.mon) \
                                and (@day == other.mday) then
                                true
                        else
                                false
                        end
                end