if (value != null) {
required = false;
}
copyList.add(new Property(p.getName(), value, required, p
.getType(), p.getDescription()));
}
}
OUTER: for (Map.Entry<String, Object> entry : jobDataMap.entrySet()) {
for (Property p : copyList) {
if (p.getName().equals(entry.getKey())) {
continue OUTER;
}
}
copyList.add(new Property(entry.getKey(), entry.getValue(), false,
entry.getValue().getClass(), ""));
}
return copyList;
}