view class doc
123456789101112131415161718192021222324252627282930313233/// FOURJS_START_COPYRIGHT(D,2021)
/// Property of Four Js*
/// (c) Copyright Four Js 2021, 2022. All Rights Reserved.
/// * Trademark of Four Js Development Tools Europe Ltd
///   in the United States and elsewhere
///
/// This file can be modified by licensees according to the
/// product manual.
/// FOURJS_END_COPYRIGHT

"use strict";

modulum('RSidebarApplistWidget', ['WidgetGroupBase', 'WidgetFactory'],
  function(context, cls) {

    /**
     * Applist widget.
     * @class RSidebarApplistWidget
     * @memberOf classes
     * @extends classes.WidgetGroupBase
     * @publicdoc Widgets
     */
    cls.RSidebarApplistWidget = context.oo.Class(cls.WidgetGroupBase, function($super) {
      return /** @lends classes.RSidebarApplistWidget.prototype */ {
        __name: 'RSidebarApplistWidget',

        _expanded: false,

      };
    });
    cls.WidgetFactory.registerBuilder('RSidebarApplist', cls.RSidebarApplistWidget);
  });