protected synchronized TestEnvironment createTestEnvironment
(TestParameters Param, PrintWriter log) {
TestEnvironment tEnv = null;
XNameAccess oSFNA = null;
XStyle oStyle = null;
XStyle oMyStyle = null;
log.println("creating a test environment");
try {
log.println("getting style");
XStyleFamiliesSupplier oSFS = (XStyleFamiliesSupplier)
UnoRuntime.queryInterface(XStyleFamiliesSupplier.class,
xTextDoc);
XNameAccess oSF = oSFS.getStyleFamilies();
XIndexAccess oSFsIA = (XIndexAccess)
UnoRuntime.queryInterface(XIndexAccess.class, oSF);
oSFNA = (XNameAccess) AnyConverter.toObject(
new Type(XNameAccess.class),oSFsIA.getByIndex(0));
XIndexAccess oSFIA = (XIndexAccess)
UnoRuntime.queryInterface(XIndexAccess.class, oSFNA);
oStyle = (XStyle) AnyConverter.toObject(
new Type(XStyle.class),oSFIA.getByIndex(10));
} catch ( com.sun.star.lang.WrappedTargetException e ) {
log.println("Error: exception occured.");
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
} catch ( com.sun.star.lang.IndexOutOfBoundsException e ) {
log.println("Error: exception occured.");
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
} catch ( com.sun.star.lang.IllegalArgumentException e ) {
log.println("Error: exception occured.");
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
}
try {
log.print("Creating a user-defined style... ");
XMultiServiceFactory oMSF = (XMultiServiceFactory)
UnoRuntime.queryInterface(XMultiServiceFactory.class, xTextDoc);
XInterface oInt = (XInterface)
oMSF.createInstance("com.sun.star.style.CharacterStyle");
oMyStyle = (XStyle) UnoRuntime.queryInterface(XStyle.class, oInt);
} catch ( com.sun.star.uno.Exception e ) {
log.println("Error: exception occured.");
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
}
if (oMyStyle == null)
log.println("FAILED");
else
log.println("OK");
XNameContainer oSFNC = (XNameContainer)
UnoRuntime.queryInterface(XNameContainer.class, oSFNA);
try {
if ( oSFNC.hasByName("My Style") )
oSFNC.removeByName("My Style");
oSFNC.insertByName("My Style", oMyStyle);
} catch ( com.sun.star.lang.WrappedTargetException e ) {
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
} catch ( com.sun.star.lang.IllegalArgumentException e ) {
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
} catch ( com.sun.star.container.NoSuchElementException e ) {
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
} catch ( com.sun.star.container.ElementExistException e ) {
e.printStackTrace(log);
throw new StatusException( "Couldn't create environment ", e );
}
XText oText = xTextDoc.getText();
XTextCursor oCursor = oText.createTextCursor();
XPropertySet xProp = (XPropertySet)
UnoRuntime.queryInterface(XPropertySet.class, oCursor);
try {
xProp.setPropertyValue("CharStyleName", oMyStyle.getName());
} catch ( com.sun.star.lang.WrappedTargetException e ) {
e.printStackTrace( log );
throw new StatusException( "Couldn't create environment ", e );
} catch ( com.sun.star.lang.IllegalArgumentException e ) {
e.printStackTrace( log );