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;
            }
        }
Exemple #2
0
 public Slot(TCollectionType collection, ICollectionPriority <TElementType> priority)
 {
     this.collection = collection;
     this.priority   = priority;
 }
Exemple #3
0
 public Slot(TCollectionType collection)
     : this(collection, new CollectionPriority <TElementType>())
 {
 }