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() { toString: function() {
return '{ type: ' + this.type return '{ type: ' + this.type
+ ', point: ' + this.point + ', point: ' + this.getPoint()
+ ', count: ' + this.count + ', count: ' + this.getCount()
+ ', modifiers: ' + this.getModifiers() + ', modifiers: ' + this.getModifiers()
+ ' }'; + ' }';
} }