?? emailmodel.java
字號(hào):
package com.sun.j2ee.workflow.mail;import java.util.Locale;/** * @author Jian (James) Cai */public class EmailModel implements java.io.Serializable { private String subject; private String htmlContents; private String emailReceiver; private Locale locale; public EmailModel( String subject, String htmlContents, String emailReceiver, Locale locale) { this.subject = subject; this.htmlContents = htmlContents; this.emailReceiver = emailReceiver; this.locale = locale; } //subject field of email message public String getSubject() { return subject; } //Email address of recipient of email message public String getEmailReceiver() { return emailReceiver; } //contents of email message public String getHtmlContents() { return htmlContents; } public Locale getLocale() { return locale; } public String toString() { return " locale=" + locale + " subject=" + subject + " " + emailReceiver + " " + htmlContents; }}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -