Blame view

js/app/models/MultiplotNode.js 673 Bytes
940afd8d   Benjamin Renard   Introduce multipl...
1
2
3
4
5
6
7
8
9
10
11
12
13
/** 
 * Project  : AMDA-NG4
 * Name     : MultiplotNode.js
 * @class   amdaModel.MutiplotNode
 * @extends amdaModel.ExecutableNode
 * @brief   Basic Model of Node corresponding to a multi-plot request
 * @author  Benjamin Renard
 */

Ext.define('amdaModel.MultiplotNode', {
    extend: 'amdaModel.ExecutableNode',

    statics: {
27a055f4   Benjamin Renard   Multiplot (#8314)
14
        nodeType: 'multiplot' 
940afd8d   Benjamin Renard   Introduce multipl...
15
16
17
18
19
20
21
22
23
    },

    constructor : function(config){
        this.callParent(arguments);
        this.set('moduleId',myDesktopApp.dynamicModules.plot.id);
        this.set('objectDataModel','amdaPlotObj.MultiplotRequestObject');
        this.set('nodeType',this.self.nodeType);
        this.set('leaf', true);
    }
57e15214   Benjamin Renard   Fix addParameter ...
24

940afd8d   Benjamin Renard   Introduce multipl...
25
});