super(sourceComponent, rawVariables);
Integer fc = (Integer) rawVariables.get("filecount");
if (fc != null) {
files = new Html5File[fc];
for (int i = 0; i < fc; i++) {
Html5File file = new Html5File();
String id = (String) rawVariables.get("fi" + i);
file.name = (String) rawVariables.get("fn" + i);
file.size = (Integer) rawVariables.get("fs" + i);
file.type = (String) rawVariables.get("ft" + i);
files[i] = file;