Newer
Older
piotr.kupczyk@id.ethz.ch
committed
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
define([ "stjs" ], function(stjs) {
var UploadedDataSetCreation = function() {
this.properties = {};
};
stjs.extend(UploadedDataSetCreation, null, [], function(constructor, prototype) {
prototype['@type'] = 'dss.dto.dataset.create.UploadedDataSetCreation';
constructor.serialVersionUID = 1;
prototype.typeId = null;
prototype.experimentId = null;
prototype.sampleId = null;
prototype.properties = null;
prototype.parentIds = null;
prototype.uploadId = null;
prototype.getTypeId = function() {
return this.typeId;
};
prototype.setTypeId = function(typeId) {
this.typeId = typeId;
};
prototype.getExperimentId = function() {
return this.experimentId;
};
prototype.setExperimentId = function(experimentId) {
this.experimentId = experimentId;
};
prototype.getSampleId = function() {
return this.sampleId;
};
prototype.setSampleId = function(sampleId) {
this.sampleId = sampleId;
};
prototype.getProperty = function(propertyName) {
return this.properties[propertyName];
};
prototype.setProperty = function(propertyName, propertyValue) {
this.properties[propertyName] = propertyValue;
};
prototype.getProperties = function() {
return this.properties;
};
prototype.setProperties = function(properties) {
this.properties = properties;
};
prototype.getParentIds = function() {
return this.parentIds;
};
prototype.setParentIds = function(parentIds) {
this.parentIds = parentIds;
};
prototype.getUploadId = function() {
return this.uploadId;
};
prototype.setUploadId = function(uploadId) {
this.uploadId = uploadId;
};
}, {
typeId : "IEntityTypeId",
experimentId : "IExperimentId",
sampleId : "ISampleId",
properties : {
name : "Map",
arguments : [ "String", "Serializable" ]
piotr.kupczyk@id.ethz.ch
committed
},
parentIds : {
name : "List",
piotr.kupczyk@id.ethz.ch
committed
arguments : [ "IDataSetId" ]
piotr.kupczyk@id.ethz.ch
committed
}
});
return UploadedDataSetCreation;
})