emailbean.java

来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 70 行

JAVA
70
字号
/* * phoneBean.java * * Created on 2001年8月23日, 上午11:13 */package com.gs.email;import java.util.*;import com.gs.db.*;import com.gs.db.util.tree.*;/** * The AdminBean is designed to be used in the Jive admin tool as a way * to keep state in various elements of the tool. */public class EmailBean {    private int[] removeID;    private int[] updateID;    private ArrayList  tempUsers;    private ArrayList userList;    private Enumeration userTable;    public EmailBean() {            }    public int[] getremoveID() {        return this.removeID;    }    public void setremoveID( int[] removeID ) {        this.removeID = removeID;    }    public int[] getupdateID() {        return this.updateID;    }    public void setupdateID( int[] updateID ) {        this.updateID = updateID;    }    public void setTempUsers(ArrayList al1 ) {        this.tempUsers = al1;    }    public ArrayList getTempUsers(){        return this.tempUsers;     }    public void setUserList(ArrayList al ) {        this.userList = al;    }    public ArrayList getUserList(){        return this.userList;    }        public void setUserTable(Enumeration e ) {        this.userTable = e;    }    public Enumeration getUserTable(){        return this.userTable;    }    public void resetreturnBean(){        if (this.tempUsers.size()>0){            this.tempUsers.clear();}    }    public void resetBean(){        if (this.tempUsers.size()>0){            this.tempUsers.clear();}        if (this.userList.size()>0){             this.userList.clear();}    }}

⌨️ 快捷键说明

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