public SymbolCollectionHarmoniser(SymbolCollection aCollection, TCollectionType aType)
        {
            iCollection = aCollection;
            iType       = aType;

            // If the collection is not XIP, then we can definitely say it is relocatable
            if (aType == TCollectionType.ENotXIP)
            {
                iCollection.IsFixed = false;
            }
            else if (aType == TCollectionType.EXIP)
            {
                iCollection.IsFixed = true;
            }
        }
Exemplo n.º 2
0
 public Slot(TCollectionType collection, ICollectionPriority <TElementType> priority)
 {
     this.collection = collection;
     this.priority   = priority;
 }
Exemplo n.º 3
0
 public Slot(TCollectionType collection)
     : this(collection, new CollectionPriority <TElementType>())
 {
 }