@openui5/sap.ui.core
Version:
OpenUI5 Core Library sap.ui.core
39 lines (31 loc) • 1.01 kB
JavaScript
/*!
* OpenUI5
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
// Provides control sap.ui.core.SeparatorItem.
sap.ui.define(['./Item', './library'],
function(Item) {
"use strict";
/**
* Constructor for a new SeparatorItem.
*
* @param {string} [sId] id for the new control, generated automatically if no id is given
* @param {object} [mSettings] initial settings for the new control
*
* @class
* An item that provides a visual separation. It borrows all its methods from the classes sap.ui.core.Item, sap.ui.core.Element,
* sap.ui.base.EventProvider, and sap.ui.base.Object.
* @extends sap.ui.core.Item
*
* @author SAP SE
* @version 1.111.5
*
* @public
* @alias sap.ui.core.SeparatorItem
*/
var SeparatorItem = Item.extend("sap.ui.core.SeparatorItem", /** @lends sap.ui.core.SeparatorItem.prototype */ { metadata : {
library : "sap.ui.core"
}});
return SeparatorItem;
});