📄 forwardinfo.java
字号:
package com.laoer.bbscs.servlet;
/**
* <p>Title: ��������V5.0</p>
* <p>Description: BBS-CS��������V5.0</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: laoer.com</p>
* @author ������
* @version 5.0
*/
public class ForwardInfo {
String msg = "";
String url = "";
boolean isRight = true;
boolean isFoward = true;
int second = 0;
int type = 0;
public ForwardInfo() {
}
public ForwardInfo(String aMsg, String aUrl) {
this.msg = aMsg;
this.url = aUrl;
}
public ForwardInfo(String aMsg, String aUrl, int atype) {
this.msg = aMsg;
this.url = aUrl;
this.type = atype;
}
public ForwardInfo(String aMsg, String aUrl, boolean aIsRight,
boolean aIsFoward) {
this.msg = aMsg;
this.url = aUrl;
this.isRight = aIsRight;
this.isFoward = aIsFoward;
}
public ForwardInfo(String aMsg, String aUrl, boolean aIsRight,
boolean aIsFoward, int s) {
this.msg = aMsg;
this.url = aUrl;
this.isRight = aIsRight;
this.isFoward = aIsFoward;
this.second = s;
}
public ForwardInfo(String aMsg, String aUrl, boolean aIsRight,
boolean aIsFoward, int s,int atype) {
this.msg = aMsg;
this.url = aUrl;
this.isRight = aIsRight;
this.isFoward = aIsFoward;
this.second = s;
this.type = atype;
}
public String getMsg() {
return this.msg;
}
public void setMsg(String aMsg) {
this.msg = aMsg;
}
public String getUrl() {
return this.url;
}
public void setUrl(String aUrl) {
this.url = aUrl;
}
public boolean getIsRight() {
return this.isRight;
}
public void setIsRight(boolean aIsRight) {
this.isRight = aIsRight;
}
public boolean getIsFoward() {
return this.isFoward;
}
public void setIsFoward(boolean aIsFoward) {
this.isFoward = aIsFoward;
}
public int getSecond() {
return this.second;
}
public void setSecond(int s) {
this.second = s;
}
public int getType() {
return this.type;
}
public void setType(int atype) {
this.type = atype;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -