

    /* This is a callback interface used by Data* classes while searching
     * on a contained string in subcomponents and contained expressions.
     *
     * See DataComponent.runOnSubcomponentFraction().
     */

public interface RunOnSubcomponentInterface
{
  public void foundSubcomponentMatch ( String         theString,
				       String         theStringToSearch,
				       int            theStringIndexOfMatch,
				       DataComponent  theDataComponent,
				       int            theSubcomponentIndex,
				       Object         theArgumentObject );
}

