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

📄 icalline.java

📁 The program is used for the calculations of the day , week , month on the calendar .
💻 JAVA
字号:
package us.k5n.ical;import java.util.Vector;/**  * This class represents one or more text lines of iCal data that  * have been unfolded into a single line.  * @version $Id$  * @author Craig Knudsen, craig@k5n.us  */class IcalLine{  /** The unfolded single line of text */  public String value;  /** The starting line number in the originial iCal data for this text */  public int startingLineNo;  /**    * Constructor    * @param value	The already unfolded line of text    * @param startingLineNo	The starting line number of the first    *				line of text in the originial iCal data    */  public IcalLine ( String value, int startingLineNo )  {    this.value = value;    this.startingLineNo = startingLineNo;  }}

⌨️ 快捷键说明

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