#region License Information /* HeuristicLab * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System.ComponentModel; using HeuristicLab.Common; namespace HeuristicLab.Clients.Hive { public partial class HiveExperimentPermission : IDeepCloneable, IContent { private string grantedUserName; public string GrantedUserName { get { return grantedUserName; } set { if (value != grantedUserName) { grantedUserName = value; RaisePropertyChanged("GrantedUserName"); } } } #region Constructors and Cloning public HiveExperimentPermission() { this.Permission = Permission.Read; this.PropertyChanged += new PropertyChangedEventHandler(HiveExperimentPermission_PropertyChanged); } protected HiveExperimentPermission(HiveExperimentPermission original, Cloner cloner) : base(original, cloner) { this.GrantedByUserId = original.GrantedByUserId; this.GrantedUserId = original.GrantedUserId; this.HiveExperimentId = original.HiveExperimentId; this.Permission = original.Permission; } public override IDeepCloneable Clone(Cloner cloner) { return new HiveExperimentPermission(this, cloner); } #endregion private void HiveExperimentPermission_PropertyChanged(object sender, PropertyChangedEventArgs e) { OnToStringChanged(); } public override string ToString() { return string.Format("{0}: {1}", GrantedUserName, Permission.ToString()); } } }