#region License Information /* HeuristicLab * Copyright (C) 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.Collections.Generic; namespace HeuristicLab.Persistence.Core { /// /// Association of id, type name and serializer /// public class TypeMapping { /// /// The type's id. /// public readonly int Id; /// /// The type's full name. /// public readonly string TypeName; /// /// The full name of the serializes used to serialize the /// . /// public readonly string Serializer; /// /// Initializes a new instance of the class. /// /// The type's id. /// The type's full name. /// The full name of the serializer use to /// serialize this type. public TypeMapping(int id, string typeName, string serializer) { Id = id; TypeName = typeName; Serializer = serializer; } /// /// Creates a dictionary that conatins all properties /// and values of this instance. /// /// A dictionary containing all properties /// and values of this instance. public Dictionary GetDict() { return new Dictionary { {"id", Id.ToString()}, {"typeName", TypeName}, {"serializer", Serializer}}; } } }