attribute.java
来自「The program is used for the calculations」· Java 代码 · 共 27 行
JAVA
27 行
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 + =
减小字号Ctrl + -
显示快捷键?