Use getters rather than beans.

This commit is contained in:
Jürg Lehni 2011-05-08 15:51:01 +01:00
parent e79d890432
commit de2bbe844b

View file

@ -194,8 +194,8 @@ var ToolEvent = this.ToolEvent = Base.extend({
toString: function() {
return '{ type: ' + this.type
+ ', point: ' + this.point
+ ', count: ' + this.count
+ ', point: ' + this.getPoint()
+ ', count: ' + this.getCount()
+ ', modifiers: ' + this.getModifiers()
+ ' }';
}