Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/11/21 13:05:27 (3 years ago)
Author:
dpiringe
Message:

#3026

  • code cleanup
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IResultFormatter.cs

    r17834 r18043  
    11using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 using System.Threading.Tasks;
    62
    73namespace HeuristicLab.JsonInterface {
    84  public interface IResultFormatter {
     5    /// <summary>
     6    /// A given priority, higher numbers are prior.
     7    /// </summary>
    98    int Priority { get; }
    109
     10    /// <summary>
     11    /// Checks if the given type can be formatted
     12    /// </summary>
     13    /// <param name="t"></param>
     14    /// <returns></returns>
    1115    bool CanFormatType(Type t);
    1216
     17    /// <summary>
     18    /// The format method which formats and object into a string (which can be saved in a JSON file).
     19    /// </summary>
     20    /// <param name="o"></param>
     21    /// <returns></returns>
    1322    string Format(object o);
    1423  }
Note: See TracChangeset for help on using the changeset viewer.