log.println( "Interaction Handler selects: REPLACE" );
xReplace.select();
return;
}
*/
XInteractionSupplyName xSupplyName
= (XInteractionSupplyName)
UnoRuntime.queryInterface(
XInteractionSupplyName.class,
continuations[ i ] );
if ( xSupplyName != null ) {
String newname = "renamed_" + req.ClashingName;
log.println( "Interaction Handler selects: NEW NAME: "
+ newname );
xSupplyName.setName( newname );
xSupplyName.select();
return;
}
}
}
catch ( IllegalArgumentException e )