use of org.akaza.openclinica.bean.managestudy.DisplayStudySubjectBean in project OpenClinica by OpenClinica.
the class DisplayStudySubjectRow method getSearchString.
@Override
public String getSearchString() {
DisplayStudySubjectBean thisStudy = (DisplayStudySubjectBean) bean;
String searchString = thisStudy.getStudySubject().getLabel();
String secondaryLabel = thisStudy.getStudySubject().getSecondaryLabel();
if (!"".equalsIgnoreCase(secondaryLabel)) {
searchString += " ";
searchString += secondaryLabel;
}
return searchString;
}
Aggregations