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
/** @class */
function Asset() {
this._name = '';
this._shape = '';
this._shhhhKeepThisSecret = '';
}
/**
*
* Set the value of the name property.
* @param {string} newName
*
*//**
*
* Get the value of the name property.
* @returns {string}
*
*/
Asset.prototype.name = function(newName) {
if (newName) { this._name = newName; }
else { return this._name; }
};
/**
* Set the value of the shape property.
* @param {string} newShape
*//**
* Set the value of the shape property, plus some other property.
* @param {string} newShape
* @param {string} mysteryProperty
*//**
* Get the value of the shape property.
* @returns {string}
*/
Asset.prototype.shape = function(newShape, mysteryProperty) {
if (newShape && mysteryProperty) {
this._shape = newShape;
this._shhhhKeepThisSecret = mysteryProperty;
}
else if (newShape) {
this._shape = newShape;
}
else {
return this._shape;
}
};