该构造函数使用给定的 sId 和设置构造和初始化托管对象。
如果给出了可选的 mSettings,它们必须是一个简单的对象,定义了属性、聚合、关联或事件的值,它们的名称为键。
对象字面量(object literal)中支持的属性(键)名称正是 JSDoc 中记录的当前类及其基类的属性、聚合、关联和事件的(区分大小写的)名称。
请注意,对于 0…n 聚合和关联,此名称通常是复数名称,而在 0…1 关系的情况下它是单数名称。
如下图所示:

每个子类都应在其构造函数文档中记录其支持设置的名称和类型。
看个实际的例子:
ew Dialog({
title: "Some title text", // property of type "string"
showHeader: true, // property of type "boolean"
endButton: new Button(...), // 0..1 aggregation
content: [ // 0..n aggregation
new Input(...),
new Input(...)
],
afterClose: function(oEvent) { ... } // event handler function
});
