Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/21/12 15:12:15 (12 years ago)
Author:
jkarder
Message:

#1854:

  • integrated marker attribute (IsDisposable) into the Hive components
  • adjusted database scheme
  • extended administration user interface
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Services.Hive.DataAccess/3.3/HiveDataContext.designer.cs

    r6983 r7857  
    33// <auto-generated>
    44//     This code was generated by a tool.
    5 //     Runtime Version:4.0.30319.239
     5//     Runtime Version:4.0.30319.269
    66//
    77//     Changes to this file may cause incorrect behavior and will be lost if
     
    11791179    private double _CpuUtilization;
    11801180   
     1181    private bool _IsDisposable;
     1182   
    11811183    #region Extensibility Method Definitions
    11821184    partial void OnLoaded();
     
    12071209    partial void OnCpuUtilizationChanging(double value);
    12081210    partial void OnCpuUtilizationChanged();
     1211    partial void OnIsDisposableChanging(bool value);
     1212    partial void OnIsDisposableChanged();
    12091213    #endregion
    12101214   
     
    14501454          this.SendPropertyChanged("CpuUtilization");
    14511455          this.OnCpuUtilizationChanged();
     1456        }
     1457      }
     1458    }
     1459   
     1460    [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsDisposable", DbType="Bit")]
     1461    public bool IsDisposable
     1462    {
     1463      get
     1464      {
     1465        return this._IsDisposable;
     1466      }
     1467      set
     1468      {
     1469        if ((this._IsDisposable != value))
     1470        {
     1471          this.OnIsDisposableChanging(value);
     1472          this.SendPropertyChanging();
     1473          this._IsDisposable = value;
     1474          this.SendPropertyChanged("IsDisposable");
     1475          this.OnIsDisposableChanged();
    14521476        }
    14531477      }
Note: See TracChangeset for help on using the changeset viewer.