new CodeStyleFormattingOption("ITERATION_ELEMENTS_WRAPPING", "Iteration elements wrapping");
iterationsWrapOption.addPreset(new IterationChopDownAlwaysPreset());
iterationsWrapOption.addPreset(new IterationChopDownIfLongPreset());
iterationsWrapOption.addPreset(new IterationChopDownIfLongStatementPreset());
iterationsWrapOption.addPreset(new IterationChopDownIfNotSinglePreset(), true);
iterationsWrapOption.addPreset(new IterationNoWrappingPreset());
iterationsWrapOption.addPreset(new IterationIgnoreWrappingPreset());
addOption(iterationsWrapOption);
}