Exemplo n.º 1
0
 public JavaSource(string path, string fileName, IAppVM supVM)
 {
     InitializeComponent();
     _vm = new JavaSourceViewModel(this, path);
     this._vm.FileName = fileName;
     this._supVM       = supVM;
 }
Exemplo n.º 2
0
 public JavaSource(string path, string fileName, IAppVM supVM)
 {
     InitializeComponent();
     _vm = new JavaSourceViewModel(this, path);
     this._vm.FileName = fileName;
     this._supVM = supVM;
 }
Exemplo n.º 3
0
 public JavaSource(string fileName, IAppVM supVM)
 {
     InitializeComponent();
     _vm = new JavaSourceViewModel(this);
     this._vm.FileName           = fileName;
     this._supVM                 = supVM;
     this._vm.ExistsOnFileSystem = false;
 }
Exemplo n.º 4
0
 public JavaSource(string fileName, IAppVM supVM)
 {
     InitializeComponent();
     _vm = new JavaSourceViewModel(this);
     this._vm.FileName = fileName;
     this._supVM = supVM;
     this._vm.ExistsOnFileSystem = false;
 }