Por ejemplo, deseo cargar sap.m.label y sap.ui.commons.carousel.
¿Cómo lo escribirías en xml? Dado que también necesitaría usar el contenido en el carrusel como se muestra a continuación:
<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>… Deseo agregar sap.m.Label aquí </content> </Carousel></core:View>
Si usas tu enfoque, ¿cómo manejarías el contenido a continuación:
<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>