What's the difference between _isEnabled and isEnabled in Anguilla?
问题 I've been following GUI extensions and notice examples use either _isEnabled or isEnabled , without the underscore. Both seem to work to extend or possibly replace existing functionality. isEnabled For example, the PowerTools base class (which doesn't seem to "extend" existing functionality) has: PowerTools.BaseCommand.prototype.isEnabled = function(selection, pipeline) { var p = this.properties; if (!p.initialized) { this.initialize(); } if (!this.isToolConfigured()) { return false; } if