-1 |
|
ik zit een beetje vast met de lexicon van class, properties en methods.
vooral ivm getters, onder welke benaming vallen die, zijn dit properties of methods...
vb:
public function get getDimensions():Object
{
var _return:Object =
{
"width" : this.width,
"height" : this.height,
"x" : this.x,
"y" : this.y
};
return _return;
}
public function get getDimensions():Object { var _return:Object = { "width" : this.width, "height" : this.height, "x" : this.x, "y" : this.y }; return _return; }
|