#region License Information /* HeuristicLab * Copyright (C) 2002-2012 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 namespace HeuristicLab.PluginInfrastructure { /// /// Abstract base implementation for the IApplication interface. /// public abstract class ApplicationBase : IApplication { /// /// Initializes a new instance of . /// protected ApplicationBase() { } private ApplicationAttribute ApplicationAttribute { get { object[] appAttributes = this.GetType().GetCustomAttributes(typeof(ApplicationAttribute), false); // exactly one attribute of the type ClassInfoAttribute must be given if (appAttributes.Length == 0) { throw new InvalidPluginException("ApplicationAttribute on type " + this.GetType() + " is missing."); } else if (appAttributes.Length > 1) { throw new InvalidPluginException("Found multiple ApplicationAttributes on type " + this.GetType()); } return (ApplicationAttribute)appAttributes[0]; } } #region IApplication Members /// /// Gets the name of the application. /// public string Name { get { return ApplicationAttribute.Name; } } /// /// Gets the description of the application. /// public string Description { get { return ApplicationAttribute.Description; } } /// /// Runs the application. /// public abstract void Run(); #endregion } }