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 ImagingDataSetConfig = function() {
};
stjs.extend(ImagingDataSetConfig, null, [], function(constructor, prototype) {
prototype['@type'] = 'dss.dto.imaging.ImagingDataSetConfig';
constructor.serialVersionUID = 1;
prototype.adaptor = null;
prototype.version = null;
prototype.speeds = null;
prototype.resolutions = null;
prototype.playable = null;
prototype.exports = null;
prototype.inputs = null;
prototype.metaData = null;
prototype.getAdaptor = function() {
return this.adaptor;
};
prototype.setAdaptor = function(adaptor) {
this.adaptor = adaptor;
};
prototype.getVersion = function() {
return this.version;
};
prototype.setVersion = function(version) {
this.version = version;
};
prototype.getSpeeds = function() {
return this.speeds;
};
prototype.setSpeeds = function(speeds) {
this.speeds = speeds;
};
prototype.getResolutions = function() {
return this.resolutions;
};
prototype.setResolutions = function(resolutions) {
this.resolutions = resolutions;
};
prototype.getPlayable = function() {
return this.playable;
};
prototype.setPlayable = function(playable) {
this.playable = playable;
};
prototype.getExports = function() {
return this.exports;
};
prototype.setExports = function(exports) {
this.exports = exports;
};
prototype.getInputs = function() {
return this.inputs;
};
prototype.setInputs = function(inputs) {
this.inputs = inputs;
};
prototype.getMetaData = function() {
return this.metaData;
};
prototype.setMetaData = function(metaData) {
this.metaData = metaData;
};
prototype.toString = function() {
return "ImagingDataSetConfig: " + this.adaptor;
};
}, {
resolutions : {
name : "List",
arguments : [ "String"]
},
speeds : {
name : "List",
arguments : [ "Integer"]
},
exports : {
name : "List",
arguments : [ "ImagingDataSetControl"]
},
inputs : {
name : "List",
arguments : [ "ImagingDataSetControl"]
},
metaData : {
name : "Map",
arguments : [ "String", "String" ]
}
});
return ImagingDataSetConfig;
})