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
define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
var ImagingDataSetPreview = function() {
};
stjs.extend(ImagingDataSetPreview, null, [], function(constructor, prototype) {
prototype['@type'] = 'dss.dto.imaging.ImagingDataSetPreview';
constructor.serialVersionUID = 1;
prototype.config = null;
prototype.format = null;
prototype.bytes = null;
prototype.show = null;
prototype.metaData = null;
prototype.getConfig = function() {
return this.config;
};
prototype.setConfig = function(config) {
this.config = config;
};
prototype.getFormat = function() {
return this.format;
};
prototype.setFormat = function(format) {
this.format = format;
};
prototype.getBytes = function() {
return this.bytes;
};
prototype.setBytes = function(bytes) {
this.bytes = bytes;
};
prototype.isShow = function() {
return this.show;
};
prototype.setShow = function(show) {
this.show = show;
};
prototype.getMetaData = function() {
return this.metaData;
};
prototype.setMetaData = function(metaData) {
this.metaData = metaData;
};
prototype.toString = function() {
return "ImagingDataSetPreview: " + this.config;
};