Exemplo n.º 1
0
 public CodeExplorer_RenameCommand(VBE vbe, RubberduckParserState state, IRenameDialog view, IMessageBox msgBox)
 {
     _vbe    = vbe;
     _state  = state;
     _view   = view;
     _msgBox = msgBox;
 }
Exemplo n.º 2
0
 public RenameCommand(VBE vbe, RubberduckParserState state, IRenameDialog view, IMessageBox msgBox) : base(LogManager.GetCurrentClassLogger())
 {
     _vbe    = vbe;
     _state  = state;
     _view   = view;
     _msgBox = msgBox;
 }
Exemplo n.º 3
0
 public RenamePresenterFactory(VBE vbe, IRenameDialog view, RubberduckParserState state, IMessageBox messageBox)
 {
     _vbe        = vbe;
     _view       = view;
     _state      = state;
     _messageBox = messageBox;
 }
Exemplo n.º 4
0
        public RenamePresenter(IRenameDialog view, RenameModel model)
        {
            _view = view;

            _model = model;
        }