Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.OKB/3.3/RunCreation/ServiceClient/RunCreationServiceClient.cs @ 15762

Last change on this file since 15762 was 13534, checked in by abeham, 9 years ago

#2560:

  • Updated clients (moving of all characteristic service methods to run creation service)
  • Adapted OKB problem view to display characteristic values for the instances
File size: 40.4 KB
Line 
1//------------------------------------------------------------------------------
2// <auto-generated>
3//     This code was generated by a tool.
4//     Runtime Version:4.0.30319.34209
5//
6//     Changes to this file may cause incorrect behavior and will be lost if
7//     the code is regenerated.
8// </auto-generated>
9//------------------------------------------------------------------------------
10
11namespace HeuristicLab.Clients.OKB.RunCreation {
12
13
14  [System.Diagnostics.DebuggerStepThroughAttribute()]
15  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
16  [System.Runtime.Serialization.DataContractAttribute(Name = "Algorithm", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
17      "aTransfer")]
18  public partial class Algorithm : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
19
20    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
21
22    private HeuristicLab.Clients.OKB.RunCreation.AlgorithmClass AlgorithmClassField;
23
24    private HeuristicLab.Clients.OKB.RunCreation.DataType DataTypeField;
25
26    private string DescriptionField;
27
28    private long IdField;
29
30    private string NameField;
31
32    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
33      get {
34        return this.extensionDataField;
35      }
36      set {
37        this.extensionDataField = value;
38      }
39    }
40
41    [System.Runtime.Serialization.DataMemberAttribute()]
42    public HeuristicLab.Clients.OKB.RunCreation.AlgorithmClass AlgorithmClass {
43      get {
44        return this.AlgorithmClassField;
45      }
46      set {
47        if ((object.ReferenceEquals(this.AlgorithmClassField, value) != true)) {
48          this.AlgorithmClassField = value;
49          this.RaisePropertyChanged("AlgorithmClass");
50        }
51      }
52    }
53
54    [System.Runtime.Serialization.DataMemberAttribute()]
55    public HeuristicLab.Clients.OKB.RunCreation.DataType DataType {
56      get {
57        return this.DataTypeField;
58      }
59      set {
60        if ((object.ReferenceEquals(this.DataTypeField, value) != true)) {
61          this.DataTypeField = value;
62          this.RaisePropertyChanged("DataType");
63        }
64      }
65    }
66
67    [System.Runtime.Serialization.DataMemberAttribute()]
68    public string Description {
69      get {
70        return this.DescriptionField;
71      }
72      set {
73        if ((object.ReferenceEquals(this.DescriptionField, value) != true)) {
74          this.DescriptionField = value;
75          this.RaisePropertyChanged("Description");
76        }
77      }
78    }
79
80    [System.Runtime.Serialization.DataMemberAttribute()]
81    public long Id {
82      get {
83        return this.IdField;
84      }
85      set {
86        if ((this.IdField.Equals(value) != true)) {
87          this.IdField = value;
88          this.RaisePropertyChanged("Id");
89        }
90      }
91    }
92
93    [System.Runtime.Serialization.DataMemberAttribute()]
94    public string Name {
95      get {
96        return this.NameField;
97      }
98      set {
99        if ((object.ReferenceEquals(this.NameField, value) != true)) {
100          this.NameField = value;
101          this.RaisePropertyChanged("Name");
102        }
103      }
104    }
105
106    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
107
108    protected void RaisePropertyChanged(string propertyName) {
109      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
110      if ((propertyChanged != null)) {
111        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
112      }
113    }
114  }
115
116  [System.Diagnostics.DebuggerStepThroughAttribute()]
117  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
118  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmClass", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
119      "aTransfer")]
120  public partial class AlgorithmClass : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
121
122    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
123
124    private string DescriptionField;
125
126    private string NameField;
127
128    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
129      get {
130        return this.extensionDataField;
131      }
132      set {
133        this.extensionDataField = value;
134      }
135    }
136
137    [System.Runtime.Serialization.DataMemberAttribute()]
138    public string Description {
139      get {
140        return this.DescriptionField;
141      }
142      set {
143        if ((object.ReferenceEquals(this.DescriptionField, value) != true)) {
144          this.DescriptionField = value;
145          this.RaisePropertyChanged("Description");
146        }
147      }
148    }
149
150    [System.Runtime.Serialization.DataMemberAttribute()]
151    public string Name {
152      get {
153        return this.NameField;
154      }
155      set {
156        if ((object.ReferenceEquals(this.NameField, value) != true)) {
157          this.NameField = value;
158          this.RaisePropertyChanged("Name");
159        }
160      }
161    }
162
163    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
164
165    protected void RaisePropertyChanged(string propertyName) {
166      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
167      if ((propertyChanged != null)) {
168        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
169      }
170    }
171  }
172
173  [System.Diagnostics.DebuggerStepThroughAttribute()]
174  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
175  [System.Runtime.Serialization.DataContractAttribute(Name = "DataType", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
176      "aTransfer")]
177  public partial class DataType : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
178
179    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
180
181    private string NameField;
182
183    private string TypeNameField;
184
185    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
186      get {
187        return this.extensionDataField;
188      }
189      set {
190        this.extensionDataField = value;
191      }
192    }
193
194    [System.Runtime.Serialization.DataMemberAttribute()]
195    public string Name {
196      get {
197        return this.NameField;
198      }
199      set {
200        if ((object.ReferenceEquals(this.NameField, value) != true)) {
201          this.NameField = value;
202          this.RaisePropertyChanged("Name");
203        }
204      }
205    }
206
207    [System.Runtime.Serialization.DataMemberAttribute()]
208    public string TypeName {
209      get {
210        return this.TypeNameField;
211      }
212      set {
213        if ((object.ReferenceEquals(this.TypeNameField, value) != true)) {
214          this.TypeNameField = value;
215          this.RaisePropertyChanged("TypeName");
216        }
217      }
218    }
219
220    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
221
222    protected void RaisePropertyChanged(string propertyName) {
223      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
224      if ((propertyChanged != null)) {
225        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
226      }
227    }
228  }
229
230  [System.Diagnostics.DebuggerStepThroughAttribute()]
231  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
232  [System.Runtime.Serialization.DataContractAttribute(Name = "Problem", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
233      "aTransfer")]
234  public partial class Problem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
235
236    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
237
238    private HeuristicLab.Clients.OKB.RunCreation.DataType DataTypeField;
239
240    private string DescriptionField;
241
242    private long IdField;
243
244    private string NameField;
245
246    private HeuristicLab.Clients.OKB.RunCreation.ProblemClass ProblemClassField;
247
248    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
249      get {
250        return this.extensionDataField;
251      }
252      set {
253        this.extensionDataField = value;
254      }
255    }
256
257    [System.Runtime.Serialization.DataMemberAttribute()]
258    public HeuristicLab.Clients.OKB.RunCreation.DataType DataType {
259      get {
260        return this.DataTypeField;
261      }
262      set {
263        if ((object.ReferenceEquals(this.DataTypeField, value) != true)) {
264          this.DataTypeField = value;
265          this.RaisePropertyChanged("DataType");
266        }
267      }
268    }
269
270    [System.Runtime.Serialization.DataMemberAttribute()]
271    public string Description {
272      get {
273        return this.DescriptionField;
274      }
275      set {
276        if ((object.ReferenceEquals(this.DescriptionField, value) != true)) {
277          this.DescriptionField = value;
278          this.RaisePropertyChanged("Description");
279        }
280      }
281    }
282
283    [System.Runtime.Serialization.DataMemberAttribute()]
284    public long Id {
285      get {
286        return this.IdField;
287      }
288      set {
289        if ((this.IdField.Equals(value) != true)) {
290          this.IdField = value;
291          this.RaisePropertyChanged("Id");
292        }
293      }
294    }
295
296    [System.Runtime.Serialization.DataMemberAttribute()]
297    public string Name {
298      get {
299        return this.NameField;
300      }
301      set {
302        if ((object.ReferenceEquals(this.NameField, value) != true)) {
303          this.NameField = value;
304          this.RaisePropertyChanged("Name");
305        }
306      }
307    }
308
309    [System.Runtime.Serialization.DataMemberAttribute()]
310    public HeuristicLab.Clients.OKB.RunCreation.ProblemClass ProblemClass {
311      get {
312        return this.ProblemClassField;
313      }
314      set {
315        if ((object.ReferenceEquals(this.ProblemClassField, value) != true)) {
316          this.ProblemClassField = value;
317          this.RaisePropertyChanged("ProblemClass");
318        }
319      }
320    }
321
322    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
323
324    protected void RaisePropertyChanged(string propertyName) {
325      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
326      if ((propertyChanged != null)) {
327        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
328      }
329    }
330  }
331
332  [System.Diagnostics.DebuggerStepThroughAttribute()]
333  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
334  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemClass", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
335      "aTransfer")]
336  public partial class ProblemClass : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
337
338    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
339
340    private string DescriptionField;
341
342    private string NameField;
343
344    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
345      get {
346        return this.extensionDataField;
347      }
348      set {
349        this.extensionDataField = value;
350      }
351    }
352
353    [System.Runtime.Serialization.DataMemberAttribute()]
354    public string Description {
355      get {
356        return this.DescriptionField;
357      }
358      set {
359        if ((object.ReferenceEquals(this.DescriptionField, value) != true)) {
360          this.DescriptionField = value;
361          this.RaisePropertyChanged("Description");
362        }
363      }
364    }
365
366    [System.Runtime.Serialization.DataMemberAttribute()]
367    public string Name {
368      get {
369        return this.NameField;
370      }
371      set {
372        if ((object.ReferenceEquals(this.NameField, value) != true)) {
373          this.NameField = value;
374          this.RaisePropertyChanged("Name");
375        }
376      }
377    }
378
379    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
380
381    protected void RaisePropertyChanged(string propertyName) {
382      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
383      if ((propertyChanged != null)) {
384        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
385      }
386    }
387  }
388
389  [System.Diagnostics.DebuggerStepThroughAttribute()]
390  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
391  [System.Runtime.Serialization.DataContractAttribute(Name = "Run", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
392      "aTransfer")]
393  public partial class Run : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
394
395    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
396
397    private long AlgorithmIdField;
398
399    private System.Guid ClientIdField;
400
401    private System.DateTime CreatedDateField;
402
403    private System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ParameterValuesField;
404
405    private long ProblemIdField;
406
407    private System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ResultValuesField;
408
409    private System.Guid UserIdField;
410
411    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
412      get {
413        return this.extensionDataField;
414      }
415      set {
416        this.extensionDataField = value;
417      }
418    }
419
420    [System.Runtime.Serialization.DataMemberAttribute()]
421    public long AlgorithmId {
422      get {
423        return this.AlgorithmIdField;
424      }
425      set {
426        if ((this.AlgorithmIdField.Equals(value) != true)) {
427          this.AlgorithmIdField = value;
428          this.RaisePropertyChanged("AlgorithmId");
429        }
430      }
431    }
432
433    [System.Runtime.Serialization.DataMemberAttribute()]
434    public System.Guid ClientId {
435      get {
436        return this.ClientIdField;
437      }
438      set {
439        if ((this.ClientIdField.Equals(value) != true)) {
440          this.ClientIdField = value;
441          this.RaisePropertyChanged("ClientId");
442        }
443      }
444    }
445
446    [System.Runtime.Serialization.DataMemberAttribute()]
447    public System.DateTime CreatedDate {
448      get {
449        return this.CreatedDateField;
450      }
451      set {
452        if ((this.CreatedDateField.Equals(value) != true)) {
453          this.CreatedDateField = value;
454          this.RaisePropertyChanged("CreatedDate");
455        }
456      }
457    }
458
459    [System.Runtime.Serialization.DataMemberAttribute()]
460    public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ParameterValues {
461      get {
462        return this.ParameterValuesField;
463      }
464      set {
465        if ((object.ReferenceEquals(this.ParameterValuesField, value) != true)) {
466          this.ParameterValuesField = value;
467          this.RaisePropertyChanged("ParameterValues");
468        }
469      }
470    }
471
472    [System.Runtime.Serialization.DataMemberAttribute()]
473    public long ProblemId {
474      get {
475        return this.ProblemIdField;
476      }
477      set {
478        if ((this.ProblemIdField.Equals(value) != true)) {
479          this.ProblemIdField = value;
480          this.RaisePropertyChanged("ProblemId");
481        }
482      }
483    }
484
485    [System.Runtime.Serialization.DataMemberAttribute()]
486    public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ResultValues {
487      get {
488        return this.ResultValuesField;
489      }
490      set {
491        if ((object.ReferenceEquals(this.ResultValuesField, value) != true)) {
492          this.ResultValuesField = value;
493          this.RaisePropertyChanged("ResultValues");
494        }
495      }
496    }
497
498    [System.Runtime.Serialization.DataMemberAttribute()]
499    public System.Guid UserId {
500      get {
501        return this.UserIdField;
502      }
503      set {
504        if ((this.UserIdField.Equals(value) != true)) {
505          this.UserIdField = value;
506          this.RaisePropertyChanged("UserId");
507        }
508      }
509    }
510
511    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
512
513    protected void RaisePropertyChanged(string propertyName) {
514      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
515      if ((propertyChanged != null)) {
516        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
517      }
518    }
519  }
520
521  [System.Diagnostics.DebuggerStepThroughAttribute()]
522  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
523  [System.Runtime.Serialization.DataContractAttribute(Name = "Value", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
524      "aTransfer")]
525  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.BoolValue))]
526  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.LongValue))]
527  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.TimeSpanValue))]
528  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.IntValue))]
529  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.FloatValue))]
530  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.DoubleValue))]
531  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.StringValue))]
532  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.BinaryValue))]
533  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.PercentValue))]
534  public partial class Value : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
535
536    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
537
538    private HeuristicLab.Clients.OKB.RunCreation.DataType DataTypeField;
539
540    private string NameField;
541
542    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
543      get {
544        return this.extensionDataField;
545      }
546      set {
547        this.extensionDataField = value;
548      }
549    }
550
551    [System.Runtime.Serialization.DataMemberAttribute()]
552    public HeuristicLab.Clients.OKB.RunCreation.DataType DataType {
553      get {
554        return this.DataTypeField;
555      }
556      set {
557        if ((object.ReferenceEquals(this.DataTypeField, value) != true)) {
558          this.DataTypeField = value;
559          this.RaisePropertyChanged("DataType");
560        }
561      }
562    }
563
564    [System.Runtime.Serialization.DataMemberAttribute()]
565    public string Name {
566      get {
567        return this.NameField;
568      }
569      set {
570        if ((object.ReferenceEquals(this.NameField, value) != true)) {
571          this.NameField = value;
572          this.RaisePropertyChanged("Name");
573        }
574      }
575    }
576
577    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
578
579    protected void RaisePropertyChanged(string propertyName) {
580      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
581      if ((propertyChanged != null)) {
582        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
583      }
584    }
585  }
586
587  [System.Diagnostics.DebuggerStepThroughAttribute()]
588  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
589  [System.Runtime.Serialization.DataContractAttribute(Name = "BoolValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
590      "aTransfer")]
591  public partial class BoolValue : HeuristicLab.Clients.OKB.RunCreation.Value {
592
593    private bool ValueField;
594
595    [System.Runtime.Serialization.DataMemberAttribute()]
596    public bool Value {
597      get {
598        return this.ValueField;
599      }
600      set {
601        if ((this.ValueField.Equals(value) != true)) {
602          this.ValueField = value;
603          this.RaisePropertyChanged("Value");
604        }
605      }
606    }
607  }
608
609  [System.Diagnostics.DebuggerStepThroughAttribute()]
610  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
611  [System.Runtime.Serialization.DataContractAttribute(Name = "LongValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
612      "aTransfer")]
613  public partial class LongValue : HeuristicLab.Clients.OKB.RunCreation.Value {
614
615    private long ValueField;
616
617    [System.Runtime.Serialization.DataMemberAttribute()]
618    public long Value {
619      get {
620        return this.ValueField;
621      }
622      set {
623        if ((this.ValueField.Equals(value) != true)) {
624          this.ValueField = value;
625          this.RaisePropertyChanged("Value");
626        }
627      }
628    }
629  }
630
631  [System.Diagnostics.DebuggerStepThroughAttribute()]
632  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
633  [System.Runtime.Serialization.DataContractAttribute(Name = "TimeSpanValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
634      "aTransfer")]
635  public partial class TimeSpanValue : HeuristicLab.Clients.OKB.RunCreation.Value {
636
637    private long ValueField;
638
639    [System.Runtime.Serialization.DataMemberAttribute()]
640    public long Value {
641      get {
642        return this.ValueField;
643      }
644      set {
645        if ((this.ValueField.Equals(value) != true)) {
646          this.ValueField = value;
647          this.RaisePropertyChanged("Value");
648        }
649      }
650    }
651  }
652
653  [System.Diagnostics.DebuggerStepThroughAttribute()]
654  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
655  [System.Runtime.Serialization.DataContractAttribute(Name = "IntValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
656      "aTransfer")]
657  public partial class IntValue : HeuristicLab.Clients.OKB.RunCreation.Value {
658
659    private int ValueField;
660
661    [System.Runtime.Serialization.DataMemberAttribute()]
662    public int Value {
663      get {
664        return this.ValueField;
665      }
666      set {
667        if ((this.ValueField.Equals(value) != true)) {
668          this.ValueField = value;
669          this.RaisePropertyChanged("Value");
670        }
671      }
672    }
673  }
674
675  [System.Diagnostics.DebuggerStepThroughAttribute()]
676  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
677  [System.Runtime.Serialization.DataContractAttribute(Name = "FloatValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
678      "aTransfer")]
679  public partial class FloatValue : HeuristicLab.Clients.OKB.RunCreation.Value {
680
681    private float ValueField;
682
683    [System.Runtime.Serialization.DataMemberAttribute()]
684    public float Value {
685      get {
686        return this.ValueField;
687      }
688      set {
689        if ((this.ValueField.Equals(value) != true)) {
690          this.ValueField = value;
691          this.RaisePropertyChanged("Value");
692        }
693      }
694    }
695  }
696
697  [System.Diagnostics.DebuggerStepThroughAttribute()]
698  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
699  [System.Runtime.Serialization.DataContractAttribute(Name = "DoubleValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
700      "aTransfer")]
701  public partial class DoubleValue : HeuristicLab.Clients.OKB.RunCreation.Value {
702
703    private double ValueField;
704
705    [System.Runtime.Serialization.DataMemberAttribute()]
706    public double Value {
707      get {
708        return this.ValueField;
709      }
710      set {
711        if ((this.ValueField.Equals(value) != true)) {
712          this.ValueField = value;
713          this.RaisePropertyChanged("Value");
714        }
715      }
716    }
717  }
718
719  [System.Diagnostics.DebuggerStepThroughAttribute()]
720  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
721  [System.Runtime.Serialization.DataContractAttribute(Name = "StringValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
722      "aTransfer")]
723  public partial class StringValue : HeuristicLab.Clients.OKB.RunCreation.Value {
724
725    private string ValueField;
726
727    [System.Runtime.Serialization.DataMemberAttribute()]
728    public string Value {
729      get {
730        return this.ValueField;
731      }
732      set {
733        if ((object.ReferenceEquals(this.ValueField, value) != true)) {
734          this.ValueField = value;
735          this.RaisePropertyChanged("Value");
736        }
737      }
738    }
739  }
740
741  [System.Diagnostics.DebuggerStepThroughAttribute()]
742  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
743  [System.Runtime.Serialization.DataContractAttribute(Name = "BinaryValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
744      "aTransfer")]
745  public partial class BinaryValue : HeuristicLab.Clients.OKB.RunCreation.Value {
746
747    private byte[] ValueField;
748
749    [System.Runtime.Serialization.DataMemberAttribute()]
750    public byte[] Value {
751      get {
752        return this.ValueField;
753      }
754      set {
755        if ((object.ReferenceEquals(this.ValueField, value) != true)) {
756          this.ValueField = value;
757          this.RaisePropertyChanged("Value");
758        }
759      }
760    }
761  }
762
763  [System.Diagnostics.DebuggerStepThroughAttribute()]
764  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
765  [System.Runtime.Serialization.DataContractAttribute(Name = "PercentValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
766      "aTransfer")]
767  public partial class PercentValue : HeuristicLab.Clients.OKB.RunCreation.Value {
768
769    private double ValueField;
770
771    [System.Runtime.Serialization.DataMemberAttribute()]
772    public double Value {
773      get {
774        return this.ValueField;
775      }
776      set {
777        if ((this.ValueField.Equals(value) != true)) {
778          this.ValueField = value;
779          this.RaisePropertyChanged("Value");
780        }
781      }
782    }
783  }
784
785  [System.Diagnostics.DebuggerStepThroughAttribute()]
786  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
787  [System.Runtime.Serialization.DataContractAttribute(Name = "MissingProblem", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
788  public partial class MissingProblem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
789
790    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
791
792    private string MessageField;
793
794    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
795      get {
796        return this.extensionDataField;
797      }
798      set {
799        this.extensionDataField = value;
800      }
801    }
802
803    [System.Runtime.Serialization.DataMemberAttribute()]
804    public string Message {
805      get {
806        return this.MessageField;
807      }
808      set {
809        if ((object.ReferenceEquals(this.MessageField, value) != true)) {
810          this.MessageField = value;
811          this.RaisePropertyChanged("Message");
812        }
813      }
814    }
815
816    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
817
818    protected void RaisePropertyChanged(string propertyName) {
819      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
820      if ((propertyChanged != null)) {
821        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
822      }
823    }
824  }
825
826  [System.Diagnostics.DebuggerStepThroughAttribute()]
827  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
828  [System.Runtime.Serialization.DataContractAttribute(Name = "UnknownCharacteristicType", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
829  public partial class UnknownCharacteristicType : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
830
831    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
832
833    private string MessageField;
834
835    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
836      get {
837        return this.extensionDataField;
838      }
839      set {
840        this.extensionDataField = value;
841      }
842    }
843
844    [System.Runtime.Serialization.DataMemberAttribute()]
845    public string Message {
846      get {
847        return this.MessageField;
848      }
849      set {
850        if ((object.ReferenceEquals(this.MessageField, value) != true)) {
851          this.MessageField = value;
852          this.RaisePropertyChanged("Message");
853        }
854      }
855    }
856
857    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
858
859    protected void RaisePropertyChanged(string propertyName) {
860      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
861      if ((propertyChanged != null)) {
862        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
863      }
864    }
865  }
866
867  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
868  [System.ServiceModel.ServiceContractAttribute(ConfigurationName = "HeuristicLab.Clients.OKB.RunCreation.IRunCreationService")]
869  public interface IRunCreationService {
870
871    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetAlgorithms", ReplyAction = "http://tempuri.org/IRunCreationService/GetAlgorithmsResponse")]
872    System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm> GetAlgorithms(string platformName);
873
874    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetAlgorithms", ReplyAction = "http://tempuri.org/IRunCreationService/GetAlgorithmsResponse")]
875    System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm>> GetAlgorithmsAsync(string platformName);
876
877    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetAlgorithmData", ReplyAction = "http://tempuri.org/IRunCreationService/GetAlgorithmDataResponse")]
878    byte[] GetAlgorithmData(long algorithmId);
879
880    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetAlgorithmData", ReplyAction = "http://tempuri.org/IRunCreationService/GetAlgorithmDataResponse")]
881    System.Threading.Tasks.Task<byte[]> GetAlgorithmDataAsync(long algorithmId);
882
883    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetProblems", ReplyAction = "http://tempuri.org/IRunCreationService/GetProblemsResponse")]
884    System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName);
885
886    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetProblems", ReplyAction = "http://tempuri.org/IRunCreationService/GetProblemsResponse")]
887    System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem>> GetProblemsAsync(string platformName);
888
889    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetProblemData", ReplyAction = "http://tempuri.org/IRunCreationService/GetProblemDataResponse")]
890    byte[] GetProblemData(long problemId);
891
892    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetProblemData", ReplyAction = "http://tempuri.org/IRunCreationService/GetProblemDataResponse")]
893    System.Threading.Tasks.Task<byte[]> GetProblemDataAsync(long problemId);
894
895    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/AddRun", ReplyAction = "http://tempuri.org/IRunCreationService/AddRunResponse")]
896    void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run);
897
898    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/AddRun", ReplyAction = "http://tempuri.org/IRunCreationService/AddRunResponse")]
899    System.Threading.Tasks.Task AddRunAsync(HeuristicLab.Clients.OKB.RunCreation.Run run);
900
901    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetCharacteristicValues", ReplyAction = "http://tempuri.org/IRunCreationService/GetCharacteristicValuesResponse")]
902    System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId);
903
904    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/GetCharacteristicValues", ReplyAction = "http://tempuri.org/IRunCreationService/GetCharacteristicValuesResponse")]
905    System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value>> GetCharacteristicValuesAsync(long problemId);
906
907    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValue", ReplyAction = "http://tempuri.org/IRunCreationService/SetCharacteristicValueResponse")]
908    [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.MissingProblem), Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValueMissingProblemFault", Name = "MissingProblem", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
909    [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.UnknownCharacteristicType), Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValueUnknownCharacteristi" +
910        "cTypeFault", Name = "UnknownCharacteristicType", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
911    void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value);
912
913    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValue", ReplyAction = "http://tempuri.org/IRunCreationService/SetCharacteristicValueResponse")]
914    System.Threading.Tasks.Task SetCharacteristicValueAsync(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value);
915
916    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValues", ReplyAction = "http://tempuri.org/IRunCreationService/SetCharacteristicValuesResponse")]
917    [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.MissingProblem), Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValuesMissingProblemFault" +
918        "", Name = "MissingProblem", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
919    [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.UnknownCharacteristicType), Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValuesUnknownCharacterist" +
920        "icTypeFault", Name = "UnknownCharacteristicType", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
921    void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values);
922
923    [System.ServiceModel.OperationContractAttribute(Action = "http://tempuri.org/IRunCreationService/SetCharacteristicValues", ReplyAction = "http://tempuri.org/IRunCreationService/SetCharacteristicValuesResponse")]
924    System.Threading.Tasks.Task SetCharacteristicValuesAsync(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values);
925  }
926
927  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
928  public interface IRunCreationServiceChannel : HeuristicLab.Clients.OKB.RunCreation.IRunCreationService, System.ServiceModel.IClientChannel {
929  }
930
931  [System.Diagnostics.DebuggerStepThroughAttribute()]
932  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
933  public partial class RunCreationServiceClient : System.ServiceModel.ClientBase<HeuristicLab.Clients.OKB.RunCreation.IRunCreationService>, HeuristicLab.Clients.OKB.RunCreation.IRunCreationService {
934
935    public RunCreationServiceClient() {
936    }
937
938    public RunCreationServiceClient(string endpointConfigurationName) :
939      base(endpointConfigurationName) {
940    }
941
942    public RunCreationServiceClient(string endpointConfigurationName, string remoteAddress) :
943      base(endpointConfigurationName, remoteAddress) {
944    }
945
946    public RunCreationServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
947      base(endpointConfigurationName, remoteAddress) {
948    }
949
950    public RunCreationServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
951      base(binding, remoteAddress) {
952    }
953
954    public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm> GetAlgorithms(string platformName) {
955      return base.Channel.GetAlgorithms(platformName);
956    }
957
958    public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm>> GetAlgorithmsAsync(string platformName) {
959      return base.Channel.GetAlgorithmsAsync(platformName);
960    }
961
962    public byte[] GetAlgorithmData(long algorithmId) {
963      return base.Channel.GetAlgorithmData(algorithmId);
964    }
965
966    public System.Threading.Tasks.Task<byte[]> GetAlgorithmDataAsync(long algorithmId) {
967      return base.Channel.GetAlgorithmDataAsync(algorithmId);
968    }
969
970    public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName) {
971      return base.Channel.GetProblems(platformName);
972    }
973
974    public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem>> GetProblemsAsync(string platformName) {
975      return base.Channel.GetProblemsAsync(platformName);
976    }
977
978    public byte[] GetProblemData(long problemId) {
979      return base.Channel.GetProblemData(problemId);
980    }
981
982    public System.Threading.Tasks.Task<byte[]> GetProblemDataAsync(long problemId) {
983      return base.Channel.GetProblemDataAsync(problemId);
984    }
985
986    public void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run) {
987      base.Channel.AddRun(run);
988    }
989
990    public System.Threading.Tasks.Task AddRunAsync(HeuristicLab.Clients.OKB.RunCreation.Run run) {
991      return base.Channel.AddRunAsync(run);
992    }
993
994    public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId) {
995      return base.Channel.GetCharacteristicValues(problemId);
996    }
997
998    public System.Threading.Tasks.Task<System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value>> GetCharacteristicValuesAsync(long problemId) {
999      return base.Channel.GetCharacteristicValuesAsync(problemId);
1000    }
1001
1002    public void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value) {
1003      base.Channel.SetCharacteristicValue(problemId, value);
1004    }
1005
1006    public System.Threading.Tasks.Task SetCharacteristicValueAsync(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value) {
1007      return base.Channel.SetCharacteristicValueAsync(problemId, value);
1008    }
1009
1010    public void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values) {
1011      base.Channel.SetCharacteristicValues(problemId, values);
1012    }
1013
1014    public System.Threading.Tasks.Task SetCharacteristicValuesAsync(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values) {
1015      return base.Channel.SetCharacteristicValuesAsync(problemId, values);
1016    }
1017  }
1018}
Note: See TracBrowser for help on using the repository browser.