timezone.java

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

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