emailoptions.java

来自「BEA WebLogic Server 8.1大全 = BEA webLogic」· Java 代码 · 共 56 行

JAVA
56
字号
/* 
 * WebLogic Server Unleashed
 * 
 */


package com.wlsunleashed.xml.sax.email;

/**
 * This class holds all the e-mail options
 * 
 * @version 1.0
 */
public class EMailOptions {
    /** The "importance" string */
    private String importance;

    /** Identifies if read receipt is requested */
    private boolean readReceipt;

    /**
     * Sets the importance.
     * 
     * @param importance The importance to set
     */
    public void setImportance(String importance) {
        this.importance = importance;
    }

    /**
     * Returns the importance.
     * 
     * @return String
     */
    public String getImportance() {
        return importance;
    }

    /**
     * Sets the readReceipt.
     * 
     * @param readReceipt The readReceipt to set
     */
    public void setReadReceipt(boolean readReceipt) {
        this.readReceipt = readReceipt;
    }

    /**
     * Returns the readReceipt.
     * 
     * @return boolean
     */
    public boolean isReadReceipt() {
        return readReceipt;
    }
}

⌨️ 快捷键说明

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