コード例 #1
0
		public AddElementCommand(string name, IWorkbench workbench)
			: base(name)
		{
			this.name = name;
			this.workbench = workbench;
			activePackageFilesView = new ActivePackageFilesView(workbench);
		}
コード例 #2
0
 public AddElementCommand(string name, IWorkbench workbench)
     : base(name)
 {
     this.name              = name;
     this.workbench         = workbench;
     activePackageFilesView = new ActivePackageFilesView(workbench);
 }
コード例 #3
0
		public AbstractActivePackageFilesViewCommand(IWorkbench workbench)
		{
			this.workbench = workbench;
			activePackageFilesView = new ActivePackageFilesView(workbench);
		}
コード例 #4
0
		public void Init()
		{
			SD.InitializeForUnitTests();
			workbench = new MockWorkbench();
			activePackageFilesView = new ActivePackageFilesView(workbench);
		}
コード例 #5
0
 public AbstractActivePackageFilesViewCommand(IWorkbench workbench)
 {
     this.workbench         = workbench;
     activePackageFilesView = new ActivePackageFilesView(workbench);
 }