Lines Matching refs:CommandStack

45662 	function CommandStack(eventBus, injector) {  class
45713 CommandStack.$inject = [ 'eventBus', 'injector' ];
45722 CommandStack.prototype.execute = function(command, context) {
45757 CommandStack.prototype.canExecute = function(command, context) {
45784 CommandStack.prototype.clear = function(emit) {
45797 CommandStack.prototype.undo = function() {
45825 CommandStack.prototype.redo = function() {
45856 CommandStack.prototype.register = function(command, handler) {
45868 CommandStack.prototype.registerHandler = function(command, handlerCls) {
45878 CommandStack.prototype.canUndo = function() {
45882 CommandStack.prototype.canRedo = function() {
45888 CommandStack.prototype._getRedoAction = function() {
45893 CommandStack.prototype._getUndoAction = function() {
45900 CommandStack.prototype._internalUndo = function(action) {
45923 CommandStack.prototype._fire = function(command, qualifier, event) {
45945 CommandStack.prototype._createId = function() {
45949 CommandStack.prototype._atomicDo = function(fn) {
45962 CommandStack.prototype._internalExecute = function(action, redo) {
46017 CommandStack.prototype._pushAction = function(action) {
46036 CommandStack.prototype._popAction = function() {
46056 CommandStack.prototype._markDirty = function(elements) {
46069 CommandStack.prototype._executedAction = function(action, redo) {
46078 CommandStack.prototype._revertedAction = function(action) {
46083 CommandStack.prototype._getHandler = function(command) {
46087 CommandStack.prototype._setHandler = function(command, handler) {
46100 commandStack: [ 'type', CommandStack ]