XPropertySet propertySet = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, scriptNode);
if(propertySet != null) {
try {
Object object = propertySet.getPropertyValue("URI");
String uri = object.toString();
XScript xScript = scriptProvider.getScript(uri);
list.add(new Script(uri,xScript));
}
catch(Throwable throwable) {
//do not consume
}