Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/01/19 14:36:32 (5 years ago)
Author:
dpiringe
Message:

#3026: renamed Component to JsonItem

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.Manufacture/Interfaces/IJsonItemConverter.cs

    r17281 r17283  
    1010  public interface IJsonItemConverter {
    1111    /// <summary>
    12     /// Extracts all infos out of an IItem to create a Component.
     12    /// Extracts all infos out of an IItem to create a JsonItem.
    1313    /// (For template generation.)
    1414    /// </summary>
    1515    /// <param name="value">The IItem to extract infos.</param>
    16     /// <returns>Component with infos to reinitialise the IItem.</returns>
    17     Component Extract(IItem value);
     16    /// <returns>JsonItem with infos to reinitialise the IItem.</returns>
     17    JsonItem Extract(IItem value);
    1818
    1919    /// <summary>
    20     /// Injects the saved infos from the Component into the IItem.
     20    /// Injects the saved infos from the JsonItem into the IItem.
    2121    /// (Sets the necessary values.)
    2222    /// </summary>
    2323    /// <param name="item">The IItem which get the data injected.</param>
    24     /// <param name="data">The Component with the saved values.</param>
    25     void Inject(IItem item, Component data);
     24    /// <param name="data">The JsonItem with the saved values.</param>
     25    void Inject(IItem item, JsonItem data);
    2626  }
    2727}
Note: See TracChangeset for help on using the changeset viewer.