{
if (secstr[p] >= 'A' && secstr[p] <= 'z')
{
+ try
+ {
asecstr[p] = new Annotation(String.valueOf(secstr[p]), null,
secstrcode[p], Float.NaN);
ssFound = true;
+ } catch (Exception e)
+ {
+ // e.printStackTrace();
+ }
}
}
summaryRowData[colCounter++] = 0.0;
}
}else{
- summaryRowData[colCounter++] = fieldData;
+ summaryRowData[colCounter++] = (fieldData == null || fieldData
+ .isEmpty()) ? null : fieldData;
}
}
}
{
for (PDBDocField wantedField : wantedFields)
{
+ try
+ {
if (wantedField.equals(PDBDocField.PDB_ID))
{
tbl_summary.getColumn(wantedField.getName()).setMinWidth(40);
tbl_summary.getColumn(wantedField.getName()).setMaxWidth(400);
tbl_summary.getColumn(wantedField.getName()).setPreferredWidth(95);
}
+ } catch (Exception e)
+ {
+ e.printStackTrace();
+ }
}
}
}