addSampleTo(dest, samples[n]);
}
public List expandContextWithEmptySamples(SampleContext src, SampleContext dest, Integer reqd) throws NoSuchContextException {
if (!assertContext(src) || !assertContext(dest)) {
throw new NoSuchContextException();
}
List found = findEmptySamples(src, reqd.intValue());
for (int n = 0; n < found.size(); n++)
transferSample(src, dest, (Integer) found.get(n));