XParagraphCursor xParagraphCursor = (XParagraphCursor)
UnoRuntime.queryInterface(XParagraphCursor.class, xTextCursor);
// XParagraphCursor (does not make sense)
bSuccess = xParagraphCursor.gotoNextParagraph(false);
assure("gotoNextParagraph(): succeeded", !bSuccess);
bSuccess = xParagraphCursor.gotoPreviousParagraph(false);
assure("gotoPreviousParagraph(): succeeded", !bSuccess);
bSuccess = xParagraphCursor.gotoStartOfParagraph(false);
assure("gotoStartOfParagraph(): succeeded", !bSuccess);