⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uploadcommand.java

📁 很好的搜索代码,大家都很难下载!抓紧时间啊!不要错过!
💻 JAVA
字号:
package org.zilverline.web;

import java.util.HashMap;
import java.util.Map;

/**
 * JavaBean for the upload command.
 * 
 * @author Michael Franken
 */
public class UploadCommand {

    private String collectionName;

    private int theFileCount = 1;

    private Map theFiles = new HashMap();

    public void setFiles(Map aFileList) {
        theFiles = new HashMap(aFileList);
    }

    public Map getFiles() {
        return theFiles;
    }

    public String getCollectionName() {
        return collectionName;
    }

    public void setCollectionName(String newCollectionName) {
        this.collectionName = newCollectionName;
    }

    public int getFileCount() {
        return theFileCount;
    }

    public void setFileCount(int aFileCount) {
        theFileCount = aFileCount;
    }
}

⌨️ 快捷键说明

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