⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datastore.java

📁 The program is used for the calculations of the day , week , month on the calendar .
💻 JAVA
字号:
package us.k5n.ical;/**  * The DataStore interface defines how parsed iCal data  * (VTIMEZONE, VEVENT, VTODO, VJOURNAL, VFREEBUSY) will be stored.  * By default, all objects will be stored internally.  * However, you can specify that:  * <ul>  *   <li>the data should be stored internally and a new DataStore  *       should also receive the events </li>  *   <li>the data should <em>not</em> be stored internally and a new DataStore  *       should receive the events </li>  * </ul>  * See the IcalParser interface for how to change these settings.  * @version $Id$  * @author Craig Knudsen, craig@k5n.us  * @see IcalParser  */interface DataStore{  /**    * This method will be called the parser finds a VTIMEZONE object.    */  public void storeTimezone ( Timezone timezone );  /**    * This method will be called the parser finds a VEVENT object.    */  public void storeEvent ( Event event );  /**    * This method will be called the parser finds a VTODO object.    */  public void storeTodo ( Todo todo );  /**    * This method will be called the parser finds a VJOURNAL object.    */  public void storeJournal ( Journal journal );  /**    * This method will be called the parser finds a VFREEBUSY object.    */  public void storeFreebusy ( Freebusy freebusy );  /**    * Get all Event objects.    * @return	A Vector if Event objects    */  public java.util.Vector getAllEvents ();}

⌨️ 快捷键说明

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