MixinRefactoring.CreateMixinFromFieldDeclarationCommand.CreateCommands C# (CSharp) Méthode

CreateCommands() protected méthode

protected CreateCommands ( MixinReference mixin ) : IMixinCommand[]
mixin MixinReference
Résultat IMixinCommand[]
        protected override IMixinCommand[] CreateCommands(MixinReference mixin)
        {
            return new IMixinCommand[]
            {
                new IncludeMixinCommand(mixin),
                new AddMixinToBaseListCommand(mixin),
                new InjectMixinsIntoChildCommand(mixin),
            };
        }
    }
CreateMixinFromFieldDeclarationCommand