icalendarservice.java.svn-base

来自「Fire-Workflow-Engine-All-In-One-20090208」· SVN-BASE 代码 · 共 34 行

SVN-BASE
34
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package org.fireflow.engine.calendar;import java.util.Date;import org.fireflow.engine.IRuntimeContextAware;import org.fireflow.model.Duration;/** * * @author chennieyun */public interface ICalendarService extends IRuntimeContextAware{    /**     * Get the date after the duration     * @param duration     * @return     */    public Date dateAfter(Date fromDate, Duration duration);    /**     * 判断给定的日期是否为工作日     * @param d     * @return     */    public boolean isBusinessDay(Date d);    public Date getSysDate();}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?