use of org.openntf.domino.ViewEntry in project org.openntf.domino by OpenNTF.
the class ViewEntryCollection method getPrevEntry.
/*
* (non-Javadoc)
*
* @see org.openntf.domino.ViewEntryCollection#getPrevEntry(lotus.domino.ViewEntry)
*/
@Override
public ViewEntry getPrevEntry(final lotus.domino.ViewEntry entry) {
try {
ViewEntry result = fromLotus(getDelegate().getPrevEntry(toLotus(entry)), ViewEntry.SCHEMA, parent);
entry.recycle();
return result;
} catch (NotesException e) {
DominoUtils.handleException(e);
return null;
}
}
Aggregations