Is there anyway to refactor this bloated pig?
int studyNum;
int formVer;
int partNum;
// We're getting the integer value of a string. If it throws an exception, set it equal to 0;
try {
studyNum = Integer.valueOf(getSearchProperties().getStudyIdQualifier());
} catch(NumberFormatException nfe) {
studyNum = 0;
}
// We're getting the integer value of a string. If it throws an exception, set it equal to 0;
try {
formVer = Integer.valueOf(getSearchProperties().getFormVersionNumber());
} catch(NumberFormatException nfe) {
formVer = 0;
}
// We're getting the integer value of a string. If it throws an exception, set it equal to 0;
try {
partNum = Integer.valueOf(getSearchProperties().getParticipantId());
} catch(NumberFormatException nfe) {
partNum = 0;
}