return false;
}
boolean result = false;
String contents = analysis.getContents();
for (PageElementImage image : images) {
Parameter param = image.getDescriptionParameter();
if (param != null) {
// Check if error is present
boolean breakFound = false;
boolean tagAfter = false;
boolean shouldStop = false;
int currentIndex = image.getBeginIndex() + param.getEndOffset() - 1;
int beginIndex = image.getBeginIndex() + param.getBeginOffset();
int beginError = currentIndex + 1;
int endError = currentIndex + 1;
while ((currentIndex > beginIndex) && (!shouldStop)) {
shouldStop = true;
while ((currentIndex > beginIndex) &&