notetag.java
来自「The source code for this package is loca」· Java 代码 · 共 40 行
JAVA
40 行
/* * NoteTag.java * * Created on October 4, 2002, 7:17 PM */package gov.nist.sip.instantmessaging.presence.cpimparser;/** * * @author deruelle * @version 1.0 */public class NoteTag { private String note; /** Creates new NoteTag */ public NoteTag() { note=null; } public void setNote(String note) { this.note=note; } public String getNote() { return note; } public String toString() { String result="<note>"; if (note!=null) result+=note; result+="</note>\n"; return result; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?