[2688] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2688] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 |
|
---|
| 24 | namespace HeuristicLab.PluginInfrastructure.Manager {
|
---|
[3092] | 25 | /// <summary>
|
---|
| 26 | /// Plugin files have a name and a type.
|
---|
| 27 | /// </summary>
|
---|
[2688] | 28 | [Serializable]
|
---|
| 29 | public sealed class PluginFile : IPluginFile {
|
---|
| 30 | #region IPluginFile Members
|
---|
| 31 |
|
---|
| 32 | private string name;
|
---|
[3092] | 33 | /// <summary>
|
---|
| 34 | /// Gets the name of the file.
|
---|
| 35 | /// </summary>
|
---|
[2688] | 36 | public string Name {
|
---|
| 37 | get { return name; }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | private PluginFileType type;
|
---|
[3092] | 41 | /// <summary>
|
---|
| 42 | /// Gets the type of the file.
|
---|
| 43 | /// </summary>
|
---|
[2688] | 44 | public PluginFileType Type {
|
---|
| 45 | get { return type; }
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | #endregion
|
---|
| 49 |
|
---|
[3092] | 50 | /// <summary>
|
---|
| 51 | /// Inizialize a new instance of <see cref="PluginFile" />
|
---|
| 52 | /// </summary>
|
---|
| 53 | /// <param name="name">File name</param>
|
---|
| 54 | /// <param name="type">File type</param>
|
---|
[2688] | 55 | public PluginFile(string name, PluginFileType type) {
|
---|
| 56 | this.name = name;
|
---|
| 57 | this.type = type;
|
---|
| 58 | }
|
---|
[3006] | 59 |
|
---|
[3092] | 60 | /// <summary>
|
---|
| 61 | /// ToString override for <see cref="PluginFile" />
|
---|
| 62 | /// </summary>
|
---|
| 63 | /// <returns>Plugin file name</returns>
|
---|
[3006] | 64 | public override string ToString() {
|
---|
| 65 | return name;
|
---|
| 66 | }
|
---|
[2688] | 67 | }
|
---|
| 68 | }
|
---|