Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/08/09 17:05:17 (15 years ago)
Author:
epitzer
Message:

Numerous small changes, coding conventions, renames, mini refactoring (#548)

Location:
trunk/sources/HeuristicLab.Persistence/3.3/Interfaces
Files:
11 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Interfaces/IDecomposer.cs

    r1539 r1542  
    2626    /// the same as they are supplied in the Compose method.
    2727    /// </summary>   
    28     IEnumerable<Tag> DeCompose(object obj);
     28    IEnumerable<Tag> Decompose(object obj);
    2929
    3030    /// <summary>
  • trunk/sources/HeuristicLab.Persistence/3.3/Interfaces/IFormatter.cs

    r1454 r1542  
    22
    33namespace HeuristicLab.Persistence.Interfaces {
    4 
    5   public interface IFormat {
    6     string Name { get; }
    7   }
    8 
    9   public abstract class Format : IFormat {
    10     public abstract string Name { get;  }
    11     public override bool Equals(object obj) {
    12       return Name == ((Format) obj).Name;
    13     }
    14     public override int GetHashCode() {
    15       return Name.GetHashCode();
    16     }
    17   }
    184
    195  public interface IFormatter {
Note: See TracChangeset for help on using the changeset viewer.