001/*
002 * Copyright (c) 2009 The openGion Project.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
013 * either express or implied. See the License for the specific language
014 * governing permissions and limitations under the License.
015 */
016package org.opengion.hayabusa.resource;
017
018import java.util.Calendar;
019
020/**
021 * 事業所(CDJGS) 毎の休日カレンダデータオブジェクトです。
022 *
023 * カレンダデータは、指定の事業所に関して、すべての休日情報を持っています。
024 * 元のカレンダテーブル(GE13)の 1日(DY1)~31日(DY31)までの日付け欄に対して、
025 * 休日日付けの 年月日 に対する、休日かどうかを判断できるだけの情報を保持します。
026 * 具体的には、年月日に対する Set を持つことになります。
027 * このクラスでは、全ての日を休日以外として扱います。
028 *
029 * @og.rev 3.6.0.0 (2004/09/17) 新規作成
030 * @og.group リソース管理
031 *
032 * @version  4.0
033 * @author   Hiroki Nakamura
034 * @since    JDK5.0,
035 */
036public final class CalendarPGData_NONHOLIDAY extends AbstractCalendarPGData {
037
038        /**
039         * デフォルトコンストラクター
040         *
041         * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor.
042         */
043        public CalendarPGData_NONHOLIDAY() { super(); }         // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。
044
045        /**
046         * 指定の日付けが、休日かどうかを返します。
047         * ここでは、すべて休日以外として返します。
048         *
049         * @param       day     指定の日付け
050         *
051         * @return      休日:true それ以外:false
052         *
053         */
054        @Override       // CalendarData
055        public boolean isHoliday( final Calendar day ) {
056                return false;
057        }
058}