package frame.file;
|
|
import frame.data.Entity;
|
import frame.util.MapList;
|
|
public class FileIO extends IOProcessor {
|
private String code;
|
private MapList<FileIoItem> itemList;
|
|
public FileIO() {
|
itemList = new MapList<FileIoItem>();
|
}
|
|
public void load(Entity entity) {
|
code = entity.getString("code");
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public MapList<FileIoItem> getItems() {
|
return itemList;
|
}
|
@Override
|
public IFileContext createContext(UploadResult result) {
|
// TODO Auto-generated method stub
|
return null;
|
}
|
|
}
|