Blame view

js/app/models/PlotObjects/PlotIntervalsObject.js 1.17 KB
ebebd92d   Benjamin Renard   Add intervals dra...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
 * Project      : AMDA-NG
 * Name         : PlotIntervalsObject.js
 * @class   amdaPlotObj.PlotIntervalsObject
 * @extends Ext.data.Model
 * @brief   Plot Intervals Business Object Definition 
 * @author  Benjamin Renard
 * @version $Id: PlotIntervalsObject.js benjamin $
 ******************************************************************************
 *    FT Id     :   Date   : Name - Description
 ******************************************************************************
 *	:           :04/04/2019: BRE  - file creation
 */
 
 		
Ext.define('amdaPlotObj.PlotIntervalsObject', {
	extend: 'Ext.data.Model',
	
	requires: [
	           'amdaPlotObj.PlotObjectConfig'
	],
	
	fields : [
    ],
    
    constructor: function(){
        var me = this;
        me.callParent(arguments);
        if ((arguments.length > 0) && arguments[0])
        {
        }
        else
        {
        	//new object, set default fields values
        	me.setDefaultValues();
        }
        this.dirty = false;
    },
    
    setDefaultValues: function()
    {
    },
    
    getJsonValues : function() 
    {
    	var intervalsValues  = new Object();
    	
    	return intervalsValues;
    }
});