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

📄 attribute.java

📁 The program is used for the calculations of the day , week , month on the calendar .
💻 JAVA
字号:
package us.k5n.ical;/**  * iCal Attribute class.  Can be used to store an attribute such as  * LANGUAGE as in: <br/>  * <tt>LOCATION;LANGUAGE=en:Germany</tt>  * @version $Id$  * @author Craig Knudsen, craig@k5n.us  */public class Attribute{  /** Attribute name (always uppercase) */  public String name;  /** Attribute value */  public String value;  public Attribute ( String name, String value )  {    this.name = name.toUpperCase();    this.value = value.trim ();  }}

⌨️ 快捷键说明

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