// the element if it is a TextTable, if it doesn't support the
// com.sun.star.text.TextTable service, then it is safe to assume
// that it really is a paragraph
XServiceInfo xInfo = (XServiceInfo) UnoRuntime.queryInterface(
XServiceInfo.class, xParaEnum.nextElement() );
if ( !xInfo.supportsService ( "com.sun.star.text.TextTable" ) )
{
// Access the paragraph's property set...the properties in this
// property set are listed in:
// com.sun.star.style.ParagraphProperties
XPropertySet xSet = (XPropertySet) UnoRuntime.queryInterface(