String companyId, String className, String classPK,
OrderByComparator obc) throws NoSuchAddressException, SystemException {
List list = findByC_C_C(companyId, className, classPK, 0, 1, obc);
if (list.size() == 0) {
throw new NoSuchAddressException();
}
else {
return (com.liferay.portal.model.Address)list.get(0);
}
}