Newer
Older
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
55
56
57
58
59
60
61
62
63
define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
var ImagingDataSetControl = function() {
};
stjs.extend(ImagingDataSetControl, null, [], function(constructor, prototype) {
prototype['@type'] = 'dss.dto.imaging.ImagingDataSetControl';
constructor.serialVersionUID = 1;
prototype.label = null;
prototype.type = null;
prototype.values = null;
prototype.range = null;
prototype.multiselect = null;
prototype.playable = null;
prototype.speeds = null;
prototype.metaData = null;
prototype.getLabel = function() {
return this.label;
};
prototype.setLabel = function(label) {
this.label = label;
};
prototype.getType = function() {
return this.type;
};
prototype.setType = function(type) {
this.type = type;
};
prototype.getValues = function() {
return this.values;
};
prototype.setValues = function(values) {
this.values = values;
};
prototype.getRange = function() {
return this.range;
};
prototype.setRange = function(range) {
this.range = range;
};
prototype.getMultiselect = function() {
return this.multiselect;
};
prototype.setMultiselect = function(multiselect) {
this.multiselect = multiselect;
};
prototype.getPlayable = function() {
return this.playable;
};
prototype.setPlayable = function(playable) {
this.playable = playable;
};
prototype.getSpeeds = function() {
return this.speeds;
};
prototype.setSpeeds = function(speeds) {
this.speeds = speeds;
};
prototype.getMetaData = function() {
return this.metaData;
};
prototype.setMetaData = function(metaData) {
this.metaData = metaData;
};
prototype.toString = function() {
return "ImagingDataSetControl: " + this.label;
};
}, {
values : {
name : "List",
arguments : [ "String"]
},
range : {
name : "List",
arguments : [ "Integer"]
},
speeds : {
name : "List",
arguments : [ "Integer"]
},
metaData : {
name : "Map",
arguments : [ "String", "String" ]
}
});
return ImagingDataSetControl;
})