📄 popmail.java
字号:
/**
* =============================================
* Copyright 2005 TransFar
*
* Change Revision
* --------------------------------
* Date Author Remarks
* Dec 22, 2005 yHuang Create class com.szmx.component.mail.PopMail
* =============================================
*/
package com.szmx.component.mail;
/**
*
* @author yHuang
* @version 1.0
* @class com.szmx.component.mail.PopMail
* @since Dec 22, 2005
*/
public class PopMail {
private String host ;
private String username ;
private String password ;
public PopMail(String host, String username, String password) {
this.host = host;
this.username = username;
this.password = password;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -