📄 uploadcommand.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 + -