/******************************************************************************
    Sort data for obervables to pass to observers.
    
----------------------------------------------------
Copyright (c) Gunnar Gotshalks. All Rights Reserved.

Permission to use, copy, modify, and distribute this software
and its documentation for NON-COMMERCIAL purposes and
without fee is hereby granted. 
*******************************************************************************/

package FlexOr.searchAndSort;

import java.awt.Color;

/** Data to be passed to observers of array sort algorithms. */

class MergeObsData extends SortObsData {

/** Register the color of each mergeSpace array element. */

  public Color[] msTag;
  
  public MergeObsData(int size) {
    super(size);
    msTag = new Color[size];
    for (int i = 0 ; i < msTag.length ; i++) {
      msTag[i] = Color.lightGray;
    }
  }
}