icalline.java

来自「The program is used for the calculations」· Java 代码 · 共 36 行

JAVA
36
字号
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 + =
减小字号Ctrl + -
显示快捷键?