popmail.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 56 行
JAVA
56 行
/**
* =============================================
* 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 + =
减小字号Ctrl + -
显示快捷键?