/* * (non-Javadoc) * * @see org.openntf.domino.DirectoryNavigator#getNthItemValue(int) */ @Override public Vector<Object> getNthItemValue(int n) { try { return Factory.wrapColumnValues(getDelegate().getNthItemValue(n)); } catch (NotesException e) { DominoUtils.handleException(e); return null; } }
/* * (non-Javadoc) * * @see org.openntf.domino.NotesProperty#getValues() */ @Override public Vector<Object> getValues() { try { // Does this even use DateTime? Who knows? return Factory.wrapColumnValues(getDelegate().getValues(), this.getAncestorSession()); } catch (NotesException e) { DominoUtils.handleException(e); return null; } }