final HashMap blankStorageRequests = new HashMap(8);
for (int i = 0; i < entries.length; i++) {
final Entry entry = entries[i];
//TODO: support ranges and Exact_Type[]
final Exact_Type exact_blank =
entry.getIndividualDiskSpace().getExact(0);
if (exact_blank == null) {
throw new CannotTranslateException(
"missing blankspace space specification");
}
// casting double
final int space = (int) exact_blank.get_value();
final String blankPartitionName = entry.getPartitionName();
if (blankPartitionName == null) {
throw new CannotTranslateException(
"missing blankspace name");
}