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

📄 timezone.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;/**  * iCal Timezone class  * NOTE: not yet implemented!  * @version $Id$  * @author Craig Knudsen, craig@k5n.us  */public class Timezone{  public String tzid = null;  public String lastMod = null;  public String tzOffsetFrom = null;  public String tzOffsetTo = null;  public String tzName = null;  public Timezone ( IcalParser parser, int initialLine, Vector textLines )  {    // TODO  }  public void parseLine ( String icalStr, int parseMethod )    throws ParseException, BogusDataException  {    // TODO    // so we can compile :-)    boolean x = false;    if ( x )      throw new ParseException ( "TODO!", "XXX" );    if ( x )      throw new BogusDataException ( "TODO!", "XXX" );  }  public boolean isValid ()  {    return false;  }}

⌨️ 快捷键说明

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