}
public void setColumnHeader(int column, int alt)
{
String value = alt == 1 ? mAltHeaders.get(column) : mHeaders.get(column);
SetColumnNameCommand shc = new SetColumnNameCommand(mSUT.getStoryTestInterface(), column, value);
mSUT.getUndoInterface().execute(shc);
while (mDepth < mCommands.size()) {
mCommands.remove(mDepth);
}
mCommands.add(new int[] {2, alt, column});