Exemple #1
0
 public Workspace(IWorkspaceClient client)
 {
     if (client == null)
         throw new ArgumentNullException();
     this.Environment = new SmalltalkEnvironment();
     this.LastResult = null;
     this.Client = client;
 }
Exemple #2
0
 public Workspace(IWorkspaceClient client)
 {
     if (client == null)
     {
         throw new ArgumentNullException();
     }
     this.Environment = new SmalltalkEnvironment();
     this.LastResult  = null;
     this.Client      = client;
 }
Exemple #3
0
 public ErrorSink(IWorkspaceClient client)
 {
     this.Client = client;
 }
Exemple #4
0
 public ErrorSink(IWorkspaceClient client)
 {
     this.Client = client;
 }