use of org.eclipse.jdt.internal.corext.fix.ConvertForLoopOperation in project che by eclipse.
the class ConvertForLoopQuickFixTest method satisfiesPrecondition.
private boolean satisfiesPrecondition(ICompilationUnit cu) {
ForStatement statement = getForStatement(cu);
ConvertLoopOperation op = new ConvertForLoopOperation(statement);
return op.satisfiesPreconditions().isOK();
}
Aggregations