Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Clients.OKB/3.3/RunCreation/ServiceClient/RunCreationServiceClient.cs @ 14927

Last change on this file since 14927 was 14927, checked in by gkronber, 7 years ago

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File size: 49.4 KB
Line 
1//------------------------------------------------------------------------------
2// <auto-generated>
3//     This code was generated by a tool.
4//     Runtime Version:4.0.30319.42000
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    using System.Runtime.Serialization;
14
15
16  [System.Diagnostics.DebuggerStepThroughAttribute()]
17  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
18  [System.Runtime.Serialization.DataContractAttribute(Name = "Algorithm", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
19      "aTransfer")]
20  public partial class Algorithm : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
21
22    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
23
24    private HeuristicLab.Clients.OKB.RunCreation.AlgorithmClass AlgorithmClassField;
25
26    private HeuristicLab.Clients.OKB.RunCreation.DataType DataTypeField;
27
28    private string DescriptionField;
29
30    private long IdField;
31
32    private string NameField;
33
34    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
35      get {
36        return this.extensionDataField;
37      }
38      set {
39        this.extensionDataField = value;
40      }
41    }
42
43    [System.Runtime.Serialization.DataMemberAttribute()]
44    public HeuristicLab.Clients.OKB.RunCreation.AlgorithmClass AlgorithmClass {
45      get {
46        return this.AlgorithmClassField;
47      }
48      set {
49        if ((object.ReferenceEquals(this.AlgorithmClassField, value) != true)) {
50          this.AlgorithmClassField = value;
51          this.RaisePropertyChanged("AlgorithmClass");
52        }
53      }
54    }
55
56    [System.Runtime.Serialization.DataMemberAttribute()]
57    public HeuristicLab.Clients.OKB.RunCreation.DataType DataType {
58      get {
59        return this.DataTypeField;
60      }
61      set {
62        if ((object.ReferenceEquals(this.DataTypeField, value) != true)) {
63          this.DataTypeField = value;
64          this.RaisePropertyChanged("DataType");
65        }
66      }
67    }
68
69    [System.Runtime.Serialization.DataMemberAttribute()]
70    public string Description {
71      get {
72        return this.DescriptionField;
73      }
74      set {
75        if ((object.ReferenceEquals(this.DescriptionField, value) != true)) {
76          this.DescriptionField = value;
77          this.RaisePropertyChanged("Description");
78        }
79      }
80    }
81
82    [System.Runtime.Serialization.DataMemberAttribute()]
83    public long Id {
84      get {
85        return this.IdField;
86      }
87      set {
88        if ((this.IdField.Equals(value) != true)) {
89          this.IdField = value;
90          this.RaisePropertyChanged("Id");
91        }
92      }
93    }
94
95    [System.Runtime.Serialization.DataMemberAttribute()]
96    public string Name {
97      get {
98        return this.NameField;
99      }
100      set {
101        if ((object.ReferenceEquals(this.NameField, value) != true)) {
102          this.NameField = value;
103          this.RaisePropertyChanged("Name");
104        }
105      }
106    }
107
108    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
109
110    protected void RaisePropertyChanged(string propertyName) {
111      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
112      if ((propertyChanged != null)) {
113        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
114      }
115    }
116  }
117
118  [System.Diagnostics.DebuggerStepThroughAttribute()]
119    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
120    [System.Runtime.Serialization.DataContractAttribute(Name="AlgorithmClass", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
121        "aTransfer")]
122    public partial class AlgorithmClass : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
123    {
124       
125        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
126       
127        private string DescriptionField;
128       
129        private string NameField;
130       
131        public System.Runtime.Serialization.ExtensionDataObject ExtensionData
132        {
133            get
134            {
135                return this.extensionDataField;
136            }
137            set
138            {
139                this.extensionDataField = value;
140            }
141        }
142       
143        [System.Runtime.Serialization.DataMemberAttribute()]
144        public string Description
145        {
146            get
147            {
148                return this.DescriptionField;
149            }
150            set
151            {
152                if ((object.ReferenceEquals(this.DescriptionField, value) != true))
153                {
154                    this.DescriptionField = value;
155                    this.RaisePropertyChanged("Description");
156                }
157            }
158        }
159       
160        [System.Runtime.Serialization.DataMemberAttribute()]
161        public string Name
162        {
163            get
164            {
165                return this.NameField;
166            }
167            set
168            {
169                if ((object.ReferenceEquals(this.NameField, value) != true))
170                {
171                    this.NameField = value;
172                    this.RaisePropertyChanged("Name");
173                }
174            }
175        }
176       
177        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
178       
179        protected void RaisePropertyChanged(string propertyName)
180        {
181            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
182            if ((propertyChanged != null))
183            {
184                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
185            }
186        }
187    }
188
189  [System.Diagnostics.DebuggerStepThroughAttribute()]
190  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
191  [System.Runtime.Serialization.DataContractAttribute(Name = "DataType", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
192      "aTransfer")]
193  public partial class DataType : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
194
195    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
196
197    private string NameField;
198
199    private string TypeNameField;
200
201    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
202      get {
203        return this.extensionDataField;
204      }
205      set {
206        this.extensionDataField = value;
207      }
208    }
209
210    [System.Runtime.Serialization.DataMemberAttribute()]
211    public string Name {
212      get {
213        return this.NameField;
214      }
215      set {
216        if ((object.ReferenceEquals(this.NameField, value) != true)) {
217          this.NameField = value;
218          this.RaisePropertyChanged("Name");
219        }
220      }
221    }
222
223    [System.Runtime.Serialization.DataMemberAttribute()]
224    public string TypeName {
225      get {
226        return this.TypeNameField;
227      }
228      set {
229        if ((object.ReferenceEquals(this.TypeNameField, value) != true)) {
230          this.TypeNameField = value;
231          this.RaisePropertyChanged("TypeName");
232        }
233      }
234    }
235
236    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
237
238    protected void RaisePropertyChanged(string propertyName) {
239      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
240      if ((propertyChanged != null)) {
241        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
242      }
243    }
244  }
245
246  [System.Diagnostics.DebuggerStepThroughAttribute()]
247    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
248    [System.Runtime.Serialization.DataContractAttribute(Name="Problem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
249        "aTransfer")]
250    public partial class Problem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
251    {
252       
253        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
254       
255        private HeuristicLab.Clients.OKB.RunCreation.DataType DataTypeField;
256       
257        private string DescriptionField;
258       
259        private long IdField;
260       
261        private string NameField;
262       
263        private HeuristicLab.Clients.OKB.RunCreation.ProblemClass ProblemClassField;
264       
265        public System.Runtime.Serialization.ExtensionDataObject ExtensionData
266        {
267            get
268            {
269                return this.extensionDataField;
270            }
271            set
272            {
273                this.extensionDataField = value;
274            }
275        }
276       
277        [System.Runtime.Serialization.DataMemberAttribute()]
278        public HeuristicLab.Clients.OKB.RunCreation.DataType DataType
279        {
280            get
281            {
282                return this.DataTypeField;
283            }
284            set
285            {
286                if ((object.ReferenceEquals(this.DataTypeField, value) != true))
287                {
288                    this.DataTypeField = value;
289                    this.RaisePropertyChanged("DataType");
290                }
291            }
292        }
293       
294        [System.Runtime.Serialization.DataMemberAttribute()]
295        public string Description
296        {
297            get
298            {
299                return this.DescriptionField;
300            }
301            set
302            {
303                if ((object.ReferenceEquals(this.DescriptionField, value) != true))
304                {
305                    this.DescriptionField = value;
306                    this.RaisePropertyChanged("Description");
307                }
308            }
309        }
310       
311        [System.Runtime.Serialization.DataMemberAttribute()]
312        public long Id
313        {
314            get
315            {
316                return this.IdField;
317            }
318            set
319            {
320                if ((this.IdField.Equals(value) != true))
321                {
322                    this.IdField = value;
323                    this.RaisePropertyChanged("Id");
324                }
325            }
326        }
327       
328        [System.Runtime.Serialization.DataMemberAttribute()]
329        public string Name
330        {
331            get
332            {
333                return this.NameField;
334            }
335            set
336            {
337                if ((object.ReferenceEquals(this.NameField, value) != true))
338                {
339                    this.NameField = value;
340                    this.RaisePropertyChanged("Name");
341                }
342            }
343        }
344       
345        [System.Runtime.Serialization.DataMemberAttribute()]
346        public HeuristicLab.Clients.OKB.RunCreation.ProblemClass ProblemClass
347        {
348            get
349            {
350                return this.ProblemClassField;
351            }
352            set
353            {
354                if ((object.ReferenceEquals(this.ProblemClassField, value) != true))
355                {
356                    this.ProblemClassField = value;
357                    this.RaisePropertyChanged("ProblemClass");
358                }
359            }
360        }
361       
362        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
363       
364        protected void RaisePropertyChanged(string propertyName)
365        {
366            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
367            if ((propertyChanged != null))
368            {
369                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
370            }
371        }
372    }
373
374  [System.Diagnostics.DebuggerStepThroughAttribute()]
375  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
376  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemClass", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
377      "aTransfer")]
378  public partial class ProblemClass : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
379
380    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
381
382    private string DescriptionField;
383
384    private string NameField;
385
386    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
387      get {
388        return this.extensionDataField;
389      }
390      set {
391        this.extensionDataField = value;
392      }
393    }
394
395    [System.Runtime.Serialization.DataMemberAttribute()]
396    public string Description {
397      get {
398        return this.DescriptionField;
399      }
400      set {
401        if ((object.ReferenceEquals(this.DescriptionField, value) != true)) {
402          this.DescriptionField = value;
403          this.RaisePropertyChanged("Description");
404        }
405      }
406    }
407
408    [System.Runtime.Serialization.DataMemberAttribute()]
409    public string Name {
410      get {
411        return this.NameField;
412      }
413      set {
414        if ((object.ReferenceEquals(this.NameField, value) != true)) {
415          this.NameField = value;
416          this.RaisePropertyChanged("Name");
417        }
418      }
419    }
420
421    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
422
423    protected void RaisePropertyChanged(string propertyName) {
424      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
425      if ((propertyChanged != null)) {
426        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
427      }
428    }
429  }
430
431  [System.Diagnostics.DebuggerStepThroughAttribute()]
432    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
433    [System.Runtime.Serialization.DataContractAttribute(Name="Solution", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
434        "aTransfer")]
435    [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.SingleObjectiveSolution))]
436    public partial class Solution : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
437    {
438       
439        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
440       
441        private HeuristicLab.Clients.OKB.RunCreation.DataType DataTypeField;
442       
443        private long IdField;
444       
445        private long ProblemIdField;
446       
447        private System.Nullable<long> RunIdField;
448       
449        public System.Runtime.Serialization.ExtensionDataObject ExtensionData
450        {
451            get
452            {
453                return this.extensionDataField;
454            }
455            set
456            {
457                this.extensionDataField = value;
458            }
459        }
460       
461        [System.Runtime.Serialization.DataMemberAttribute()]
462        public HeuristicLab.Clients.OKB.RunCreation.DataType DataType
463        {
464            get
465            {
466                return this.DataTypeField;
467            }
468            set
469            {
470                if ((object.ReferenceEquals(this.DataTypeField, value) != true))
471                {
472                    this.DataTypeField = value;
473                    this.RaisePropertyChanged("DataType");
474                }
475            }
476        }
477       
478        [System.Runtime.Serialization.DataMemberAttribute()]
479        public long Id
480        {
481            get
482            {
483                return this.IdField;
484            }
485            set
486            {
487                if ((this.IdField.Equals(value) != true))
488                {
489                    this.IdField = value;
490                    this.RaisePropertyChanged("Id");
491                }
492            }
493        }
494       
495        [System.Runtime.Serialization.DataMemberAttribute()]
496        public long ProblemId
497        {
498            get
499            {
500                return this.ProblemIdField;
501            }
502            set
503            {
504                if ((this.ProblemIdField.Equals(value) != true))
505                {
506                    this.ProblemIdField = value;
507                    this.RaisePropertyChanged("ProblemId");
508                }
509            }
510        }
511       
512        [System.Runtime.Serialization.DataMemberAttribute()]
513        public System.Nullable<long> RunId
514        {
515            get
516            {
517                return this.RunIdField;
518            }
519            set
520            {
521                if ((this.RunIdField.Equals(value) != true))
522                {
523                    this.RunIdField = value;
524                    this.RaisePropertyChanged("RunId");
525                }
526            }
527        }
528       
529        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
530       
531        protected void RaisePropertyChanged(string propertyName)
532        {
533            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
534            if ((propertyChanged != null))
535            {
536                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
537            }
538        }
539    }
540
541  [System.Diagnostics.DebuggerStepThroughAttribute()]
542  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
543  [System.Runtime.Serialization.DataContractAttribute(Name = "SingleObjectiveSolution", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
544      "aTransfer")]
545  public partial class SingleObjectiveSolution : HeuristicLab.Clients.OKB.RunCreation.Solution {
546
547    private double QualityField;
548
549    [System.Runtime.Serialization.DataMemberAttribute()]
550    public double Quality {
551      get {
552        return this.QualityField;
553      }
554      set {
555        if ((this.QualityField.Equals(value) != true)) {
556          this.QualityField = value;
557          this.RaisePropertyChanged("Quality");
558        }
559      }
560    }
561  }
562
563  [System.Diagnostics.DebuggerStepThroughAttribute()]
564    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
565    [System.Runtime.Serialization.DataContractAttribute(Name="Run", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
566        "aTransfer")]
567    public partial class Run : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
568    {
569       
570        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
571       
572        private long AlgorithmIdField;
573       
574        private System.Guid ClientIdField;
575       
576        private System.DateTime CreatedDateField;
577       
578        private System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ParameterValuesField;
579       
580        private long ProblemIdField;
581       
582        private System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ResultValuesField;
583       
584        private System.Guid UserIdField;
585       
586        public System.Runtime.Serialization.ExtensionDataObject ExtensionData
587        {
588            get
589            {
590                return this.extensionDataField;
591            }
592            set
593            {
594                this.extensionDataField = value;
595            }
596        }
597       
598        [System.Runtime.Serialization.DataMemberAttribute()]
599        public long AlgorithmId
600        {
601            get
602            {
603                return this.AlgorithmIdField;
604            }
605            set
606            {
607                if ((this.AlgorithmIdField.Equals(value) != true))
608                {
609                    this.AlgorithmIdField = value;
610                    this.RaisePropertyChanged("AlgorithmId");
611                }
612            }
613        }
614       
615        [System.Runtime.Serialization.DataMemberAttribute()]
616        public System.Guid ClientId
617        {
618            get
619            {
620                return this.ClientIdField;
621            }
622            set
623            {
624                if ((this.ClientIdField.Equals(value) != true))
625                {
626                    this.ClientIdField = value;
627                    this.RaisePropertyChanged("ClientId");
628                }
629            }
630        }
631       
632        [System.Runtime.Serialization.DataMemberAttribute()]
633        public System.DateTime CreatedDate
634        {
635            get
636            {
637                return this.CreatedDateField;
638            }
639            set
640            {
641                if ((this.CreatedDateField.Equals(value) != true))
642                {
643                    this.CreatedDateField = value;
644                    this.RaisePropertyChanged("CreatedDate");
645                }
646            }
647        }
648       
649        [System.Runtime.Serialization.DataMemberAttribute()]
650        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ParameterValues
651        {
652            get
653            {
654                return this.ParameterValuesField;
655            }
656            set
657            {
658                if ((object.ReferenceEquals(this.ParameterValuesField, value) != true))
659                {
660                    this.ParameterValuesField = value;
661                    this.RaisePropertyChanged("ParameterValues");
662                }
663            }
664        }
665       
666        [System.Runtime.Serialization.DataMemberAttribute()]
667        public long ProblemId
668        {
669            get
670            {
671                return this.ProblemIdField;
672            }
673            set
674            {
675                if ((this.ProblemIdField.Equals(value) != true))
676                {
677                    this.ProblemIdField = value;
678                    this.RaisePropertyChanged("ProblemId");
679                }
680            }
681        }
682       
683        [System.Runtime.Serialization.DataMemberAttribute()]
684        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> ResultValues
685        {
686            get
687            {
688                return this.ResultValuesField;
689            }
690            set
691            {
692                if ((object.ReferenceEquals(this.ResultValuesField, value) != true))
693                {
694                    this.ResultValuesField = value;
695                    this.RaisePropertyChanged("ResultValues");
696                }
697            }
698        }
699       
700        [System.Runtime.Serialization.DataMemberAttribute()]
701        public System.Guid UserId
702        {
703            get
704            {
705                return this.UserIdField;
706            }
707            set
708            {
709                if ((this.UserIdField.Equals(value) != true))
710                {
711                    this.UserIdField = value;
712                    this.RaisePropertyChanged("UserId");
713                }
714            }
715        }
716       
717        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
718       
719        protected void RaisePropertyChanged(string propertyName)
720        {
721            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
722            if ((propertyChanged != null))
723            {
724                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
725            }
726        }
727    }
728
729  [System.Diagnostics.DebuggerStepThroughAttribute()]
730  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
731  [System.Runtime.Serialization.DataContractAttribute(Name = "Value", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
732      "aTransfer")]
733  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.BoolValue))]
734  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.LongValue))]
735  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.TimeSpanValue))]
736  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.DoubleValue))]
737  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.PercentValue))]
738  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.FloatValue))]
739  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.IntValue))]
740  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.StringValue))]
741  [System.Runtime.Serialization.KnownTypeAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.BinaryValue))]
742  public partial class Value : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
743
744    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
745
746    private HeuristicLab.Clients.OKB.RunCreation.DataType DataTypeField;
747
748    private string NameField;
749
750    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
751      get {
752        return this.extensionDataField;
753      }
754      set {
755        this.extensionDataField = value;
756      }
757    }
758
759    [System.Runtime.Serialization.DataMemberAttribute()]
760    public HeuristicLab.Clients.OKB.RunCreation.DataType DataType {
761      get {
762        return this.DataTypeField;
763      }
764      set {
765        if ((object.ReferenceEquals(this.DataTypeField, value) != true)) {
766          this.DataTypeField = value;
767          this.RaisePropertyChanged("DataType");
768        }
769      }
770    }
771
772    [System.Runtime.Serialization.DataMemberAttribute()]
773    public string Name {
774      get {
775        return this.NameField;
776      }
777      set {
778        if ((object.ReferenceEquals(this.NameField, value) != true)) {
779          this.NameField = value;
780          this.RaisePropertyChanged("Name");
781        }
782      }
783    }
784
785    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
786
787    protected void RaisePropertyChanged(string propertyName) {
788      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
789      if ((propertyChanged != null)) {
790        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
791      }
792    }
793  }
794
795  [System.Diagnostics.DebuggerStepThroughAttribute()]
796    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
797    [System.Runtime.Serialization.DataContractAttribute(Name="BoolValue", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
798        "aTransfer")]
799    public partial class BoolValue : HeuristicLab.Clients.OKB.RunCreation.Value
800    {
801       
802        private bool ValueField;
803       
804        [System.Runtime.Serialization.DataMemberAttribute()]
805        public bool Value
806        {
807            get
808            {
809                return this.ValueField;
810            }
811            set
812            {
813                if ((this.ValueField.Equals(value) != true))
814                {
815                    this.ValueField = value;
816                    this.RaisePropertyChanged("Value");
817                }
818            }
819        }
820    }
821
822  [System.Diagnostics.DebuggerStepThroughAttribute()]
823  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
824  [System.Runtime.Serialization.DataContractAttribute(Name = "LongValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
825      "aTransfer")]
826  public partial class LongValue : HeuristicLab.Clients.OKB.RunCreation.Value {
827
828    private long ValueField;
829
830    [System.Runtime.Serialization.DataMemberAttribute()]
831    public long Value {
832      get {
833        return this.ValueField;
834      }
835      set {
836        if ((this.ValueField.Equals(value) != true)) {
837          this.ValueField = value;
838          this.RaisePropertyChanged("Value");
839        }
840      }
841    }
842  }
843
844  [System.Diagnostics.DebuggerStepThroughAttribute()]
845    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
846    [System.Runtime.Serialization.DataContractAttribute(Name="TimeSpanValue", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
847        "aTransfer")]
848    public partial class TimeSpanValue : HeuristicLab.Clients.OKB.RunCreation.Value
849    {
850       
851        private long ValueField;
852       
853        [System.Runtime.Serialization.DataMemberAttribute()]
854        public long Value
855        {
856            get
857            {
858                return this.ValueField;
859            }
860            set
861            {
862                if ((this.ValueField.Equals(value) != true))
863                {
864                    this.ValueField = value;
865                    this.RaisePropertyChanged("Value");
866                }
867            }
868        }
869    }
870
871  [System.Diagnostics.DebuggerStepThroughAttribute()]
872  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
873  [System.Runtime.Serialization.DataContractAttribute(Name = "DoubleValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
874      "aTransfer")]
875  public partial class DoubleValue : HeuristicLab.Clients.OKB.RunCreation.Value {
876
877    private double ValueField;
878
879    [System.Runtime.Serialization.DataMemberAttribute()]
880    public double Value {
881      get {
882        return this.ValueField;
883      }
884      set {
885        if ((this.ValueField.Equals(value) != true)) {
886          this.ValueField = value;
887          this.RaisePropertyChanged("Value");
888        }
889      }
890    }
891  }
892
893  [System.Diagnostics.DebuggerStepThroughAttribute()]
894    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
895    [System.Runtime.Serialization.DataContractAttribute(Name="PercentValue", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
896        "aTransfer")]
897    public partial class PercentValue : HeuristicLab.Clients.OKB.RunCreation.Value
898    {
899       
900        private double ValueField;
901       
902        [System.Runtime.Serialization.DataMemberAttribute()]
903        public double Value
904        {
905            get
906            {
907                return this.ValueField;
908            }
909            set
910            {
911                if ((this.ValueField.Equals(value) != true))
912                {
913                    this.ValueField = value;
914                    this.RaisePropertyChanged("Value");
915                }
916            }
917        }
918    }
919
920  [System.Diagnostics.DebuggerStepThroughAttribute()]
921  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
922  [System.Runtime.Serialization.DataContractAttribute(Name = "FloatValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
923      "aTransfer")]
924  public partial class FloatValue : HeuristicLab.Clients.OKB.RunCreation.Value {
925
926    private float ValueField;
927
928    [System.Runtime.Serialization.DataMemberAttribute()]
929    public float Value {
930      get {
931        return this.ValueField;
932      }
933      set {
934        if ((this.ValueField.Equals(value) != true)) {
935          this.ValueField = value;
936          this.RaisePropertyChanged("Value");
937        }
938      }
939    }
940  }
941
942  [System.Diagnostics.DebuggerStepThroughAttribute()]
943    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
944    [System.Runtime.Serialization.DataContractAttribute(Name="IntValue", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
945        "aTransfer")]
946    public partial class IntValue : HeuristicLab.Clients.OKB.RunCreation.Value
947    {
948       
949        private int ValueField;
950       
951        [System.Runtime.Serialization.DataMemberAttribute()]
952        public int Value
953        {
954            get
955            {
956                return this.ValueField;
957            }
958            set
959            {
960                if ((this.ValueField.Equals(value) != true))
961                {
962                    this.ValueField = value;
963                    this.RaisePropertyChanged("Value");
964                }
965            }
966        }
967    }
968
969  [System.Diagnostics.DebuggerStepThroughAttribute()]
970  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
971  [System.Runtime.Serialization.DataContractAttribute(Name = "StringValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
972      "aTransfer")]
973  public partial class StringValue : HeuristicLab.Clients.OKB.RunCreation.Value {
974
975    private string ValueField;
976
977    [System.Runtime.Serialization.DataMemberAttribute()]
978    public string Value {
979      get {
980        return this.ValueField;
981      }
982      set {
983        if ((object.ReferenceEquals(this.ValueField, value) != true)) {
984          this.ValueField = value;
985          this.RaisePropertyChanged("Value");
986        }
987      }
988    }
989  }
990
991  [System.Diagnostics.DebuggerStepThroughAttribute()]
992    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
993    [System.Runtime.Serialization.DataContractAttribute(Name="BinaryValue", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation.Dat" +
994        "aTransfer")]
995    public partial class BinaryValue : HeuristicLab.Clients.OKB.RunCreation.Value
996    {
997       
998        private byte[] ValueField;
999       
1000        [System.Runtime.Serialization.DataMemberAttribute()]
1001        public byte[] Value
1002        {
1003            get
1004            {
1005                return this.ValueField;
1006            }
1007            set
1008            {
1009                if ((object.ReferenceEquals(this.ValueField, value) != true))
1010                {
1011                    this.ValueField = value;
1012                    this.RaisePropertyChanged("Value");
1013                }
1014            }
1015        }
1016    }
1017
1018  [System.Diagnostics.DebuggerStepThroughAttribute()]
1019  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
1020  [System.Runtime.Serialization.DataContractAttribute(Name = "MissingProblem", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1021  public partial class MissingProblem : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
1022
1023    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
1024
1025    private string MessageField;
1026
1027    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
1028      get {
1029        return this.extensionDataField;
1030      }
1031      set {
1032        this.extensionDataField = value;
1033      }
1034    }
1035
1036    [System.Runtime.Serialization.DataMemberAttribute()]
1037    public string Message {
1038      get {
1039        return this.MessageField;
1040      }
1041      set {
1042        if ((object.ReferenceEquals(this.MessageField, value) != true)) {
1043          this.MessageField = value;
1044          this.RaisePropertyChanged("Message");
1045        }
1046      }
1047    }
1048
1049    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
1050
1051    protected void RaisePropertyChanged(string propertyName) {
1052      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
1053      if ((propertyChanged != null)) {
1054        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
1055      }
1056    }
1057  }
1058
1059  [System.Diagnostics.DebuggerStepThroughAttribute()]
1060    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
1061    [System.Runtime.Serialization.DataContractAttribute(Name="MissingSolution", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1062    public partial class MissingSolution : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged
1063    {
1064       
1065        private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
1066       
1067        private string MessageField;
1068       
1069        public System.Runtime.Serialization.ExtensionDataObject ExtensionData
1070        {
1071            get
1072            {
1073                return this.extensionDataField;
1074            }
1075            set
1076            {
1077                this.extensionDataField = value;
1078            }
1079        }
1080       
1081        [System.Runtime.Serialization.DataMemberAttribute()]
1082        public string Message
1083        {
1084            get
1085            {
1086                return this.MessageField;
1087            }
1088            set
1089            {
1090                if ((object.ReferenceEquals(this.MessageField, value) != true))
1091                {
1092                    this.MessageField = value;
1093                    this.RaisePropertyChanged("Message");
1094                }
1095            }
1096        }
1097       
1098        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
1099       
1100        protected void RaisePropertyChanged(string propertyName)
1101        {
1102            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
1103            if ((propertyChanged != null))
1104            {
1105                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
1106            }
1107        }
1108    }
1109
1110  [System.Diagnostics.DebuggerStepThroughAttribute()]
1111  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
1112  [System.Runtime.Serialization.DataContractAttribute(Name = "UnknownCharacteristicType", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1113  public partial class UnknownCharacteristicType : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
1114
1115    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
1116
1117    private string MessageField;
1118
1119    public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
1120      get {
1121        return this.extensionDataField;
1122      }
1123      set {
1124        this.extensionDataField = value;
1125      }
1126    }
1127
1128    [System.Runtime.Serialization.DataMemberAttribute()]
1129    public string Message {
1130      get {
1131        return this.MessageField;
1132      }
1133      set {
1134        if ((object.ReferenceEquals(this.MessageField, value) != true)) {
1135          this.MessageField = value;
1136          this.RaisePropertyChanged("Message");
1137        }
1138      }
1139    }
1140
1141    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
1142
1143    protected void RaisePropertyChanged(string propertyName) {
1144      System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
1145      if ((propertyChanged != null)) {
1146        propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
1147      }
1148    }
1149  }
1150
1151  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1152    [System.ServiceModel.ServiceContractAttribute(ConfigurationName="HeuristicLab.Clients.OKB.RunCreation.IRunCreationService")]
1153    public interface IRunCreationService
1154    {
1155       
1156        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithms", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmsResponse")]
1157        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm> GetAlgorithms(string platformName);
1158       
1159        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetAlgorithmData", ReplyAction="http://tempuri.org/IRunCreationService/GetAlgorithmDataResponse")]
1160        byte[] GetAlgorithmData(long algorithmId);
1161       
1162        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblems", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemsResponse")]
1163        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName);
1164       
1165        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetProblemData", ReplyAction="http://tempuri.org/IRunCreationService/GetProblemDataResponse")]
1166        byte[] GetProblemData(long problemId);
1167       
1168        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutions", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionsResponse")]
1169        [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.MissingProblem), Action="http://tempuri.org/IRunCreationService/GetSolutionsMissingProblemFault", Name="MissingProblem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1170        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutions(long problemId);
1171       
1172        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolution", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionResponse")]
1173        HeuristicLab.Clients.OKB.RunCreation.Solution GetSolution(long solutionId);
1174       
1175        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetSolutionData", ReplyAction="http://tempuri.org/IRunCreationService/GetSolutionDataResponse")]
1176        [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.MissingSolution), Action="http://tempuri.org/IRunCreationService/GetSolutionDataMissingSolutionFault", Name="MissingSolution", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1177        byte[] GetSolutionData(long solutionId);
1178       
1179        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddSolution", ReplyAction="http://tempuri.org/IRunCreationService/AddSolutionResponse")]
1180        long AddSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data);
1181       
1182        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/DeleteSolution", ReplyAction="http://tempuri.org/IRunCreationService/DeleteSolutionResponse")]
1183        void DeleteSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution);
1184       
1185        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/AddRun", ReplyAction="http://tempuri.org/IRunCreationService/AddRunResponse")]
1186        void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run);
1187       
1188        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/GetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/GetCharacteristicValuesResponse")]
1189        System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId);
1190       
1191        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValue", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValueResponse")]
1192        [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")]
1193        [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.UnknownCharacteristicType), Action="http://tempuri.org/IRunCreationService/SetCharacteristicValueUnknownCharacteristi" +
1194            "cTypeFault", Name="UnknownCharacteristicType", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1195        void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value);
1196       
1197        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IRunCreationService/SetCharacteristicValues", ReplyAction="http://tempuri.org/IRunCreationService/SetCharacteristicValuesResponse")]
1198        [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.UnknownCharacteristicType), Action="http://tempuri.org/IRunCreationService/SetCharacteristicValuesUnknownCharacterist" +
1199            "icTypeFault", Name="UnknownCharacteristicType", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1200        [System.ServiceModel.FaultContractAttribute(typeof(HeuristicLab.Clients.OKB.RunCreation.MissingProblem), Action="http://tempuri.org/IRunCreationService/SetCharacteristicValuesMissingProblemFault" +
1201            "", Name="MissingProblem", Namespace="http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.RunCreation")]
1202        void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values);
1203    }
1204
1205  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1206  public interface IRunCreationServiceChannel : HeuristicLab.Clients.OKB.RunCreation.IRunCreationService, System.ServiceModel.IClientChannel {
1207  }
1208
1209  [System.Diagnostics.DebuggerStepThroughAttribute()]
1210    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
1211    public partial class RunCreationServiceClient : System.ServiceModel.ClientBase<HeuristicLab.Clients.OKB.RunCreation.IRunCreationService>, HeuristicLab.Clients.OKB.RunCreation.IRunCreationService
1212    {
1213       
1214        public RunCreationServiceClient()
1215        {
1216        }
1217       
1218        public RunCreationServiceClient(string endpointConfigurationName) :
1219                base(endpointConfigurationName)
1220        {
1221        }
1222       
1223        public RunCreationServiceClient(string endpointConfigurationName, string remoteAddress) :
1224                base(endpointConfigurationName, remoteAddress)
1225        {
1226        }
1227       
1228        public RunCreationServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
1229                base(endpointConfigurationName, remoteAddress)
1230        {
1231        }
1232       
1233        public RunCreationServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
1234                base(binding, remoteAddress)
1235        {
1236        }
1237       
1238        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Algorithm> GetAlgorithms(string platformName)
1239        {
1240            return base.Channel.GetAlgorithms(platformName);
1241        }
1242       
1243        public byte[] GetAlgorithmData(long algorithmId)
1244        {
1245            return base.Channel.GetAlgorithmData(algorithmId);
1246        }
1247       
1248        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Problem> GetProblems(string platformName)
1249        {
1250            return base.Channel.GetProblems(platformName);
1251        }
1252       
1253        public byte[] GetProblemData(long problemId)
1254        {
1255            return base.Channel.GetProblemData(problemId);
1256        }
1257       
1258        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Solution> GetSolutions(long problemId)
1259        {
1260            return base.Channel.GetSolutions(problemId);
1261        }
1262       
1263        public HeuristicLab.Clients.OKB.RunCreation.Solution GetSolution(long solutionId)
1264        {
1265            return base.Channel.GetSolution(solutionId);
1266        }
1267       
1268        public byte[] GetSolutionData(long solutionId)
1269        {
1270            return base.Channel.GetSolutionData(solutionId);
1271        }
1272       
1273        public long AddSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution, byte[] data)
1274        {
1275            return base.Channel.AddSolution(solution, data);
1276        }
1277       
1278        public void DeleteSolution(HeuristicLab.Clients.OKB.RunCreation.Solution solution)
1279        {
1280            base.Channel.DeleteSolution(solution);
1281        }
1282       
1283        public void AddRun(HeuristicLab.Clients.OKB.RunCreation.Run run)
1284        {
1285            base.Channel.AddRun(run);
1286        }
1287       
1288        public System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> GetCharacteristicValues(long problemId)
1289        {
1290            return base.Channel.GetCharacteristicValues(problemId);
1291        }
1292       
1293        public void SetCharacteristicValue(long problemId, HeuristicLab.Clients.OKB.RunCreation.Value value)
1294        {
1295            base.Channel.SetCharacteristicValue(problemId, value);
1296        }
1297       
1298        public void SetCharacteristicValues(long problemId, System.Collections.Generic.List<HeuristicLab.Clients.OKB.RunCreation.Value> values)
1299        {
1300            base.Channel.SetCharacteristicValues(problemId, values);
1301        }
1302    }
1303}
Note: See TracBrowser for help on using the repository browser.