Por exemplo, desejo carregar sap.m.label e sap.ui.commons.carousel.
Como você escreveria isso em xml? Uma vez que também preciso usar o conteúdo no carrossel como mostrado abaixo:
<core:View xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc" xmlns="sap.ui.commons" controllerName="test.test" xmlns:html="http://www.w3.org/1999/xhtml"><Carousel><content>Ö Desejo adicionar sap.m.Label aqui </content> </Carousel></core:View>
Se você usar sua abordagem, como lidaria com o conteúdo a seguir:
<core:View xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc" xmlns:a="sap.ui.commons" xmlns:b="sap.m" controllerName="test.test" xmlns:html="http://www.w3.org/1999/xhtml"> <a:Carousel><content> <b:Label /></content> </a:Carousel></core:View>