Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/24/15 16:59:57 (8 years ago)
Author:
swagner
Message:

#2520: Worked on new persistence implementation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PersistenceOverhaul/HeuristicLab.Persistence/4.0/Core/TransformerAttribute.cs

    r13347 r13367  
    2626  public sealed class TransformerAttribute : Attribute {
    2727    public Guid Guid { get; private set; }
    28     public uint Order { get; private set; }
     28    public uint Priority { get; private set; }
    2929
    30     public TransformerAttribute(string guid, uint order) {
     30    public TransformerAttribute(string guid, uint priority) {
    3131      Guid = new Guid(guid);
    32       Order = order;
     32      Priority = priority;
    3333    }
    3434
     
    4242      return GetTransformerAttribute(type).Guid;
    4343    }
    44     public static uint GetOrder(Type type) {
    45       return GetTransformerAttribute(type).Order;
     44    public static uint GetPriority(Type type) {
     45      return GetTransformerAttribute(type).Priority;
    4646    }
    4747  }
Note: See TracChangeset for help on using the changeset viewer.