PlotInstantSpectroObject.js
1.36 KB
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
51
52
53
54
/**
* Project : AMDA-NG
* Name : PlotInstantSpectroObject.js
* @class amdaPlotObj.PlotInstantSpectroObject
* @extends Ext.data.Model
* @brief Plot Instant Spectro Business Object Definition
* @author Benjamin Renard
* @version $Id: PlotInstantSpectroObject.js benjamin $
******************************************************************************
* FT Id : Date : Name - Description
******************************************************************************
* : :28/08/2015: BRE - file creation
*/
Ext.define('amdaPlotObj.PlotInstantSpectroObject', {
extend: 'Ext.data.Model',
requires: [
'amdaPlotObj.PlotObjectConfig'
],
fields : [
{name: 'ispectro-dimonxaxis', type: 'int'}
],
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()
{
this.set('ispectro-dimonxaxis', 0);
},
getJsonValues : function()
{
var ispectroValues = new Object();
ispectroValues['ispectro-dimonxaxis'] = this.get('ispectro-dimonxaxis');
return ispectroValues;
}
});