📄 attachmenttype.java
字号:
/* * AttachmentType.java * * Created on 5 May 2003, 16:39 */package crms.util;/** * * @author dmurphy */public class AttachmentType extends crms.util.AbstractCode { public static AttachmentType CONTACT = new AttachmentType("contact","Contact"); public static AttachmentType COMPANY = new AttachmentType("org","Company"); public static AttachmentType REMINDER = new AttachmentType("remind","Reminder"); public static AttachmentType CALL = new AttachmentType("call","Call"); /** Creates a new instance of AttachmentType */ public AttachmentType(String code, String name) { super(code, name); } public AttachmentType() { }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -