* @return list of annotation rules
*/
private List<TrabalRule> createAnnotationRules(AnnotationError each) {
List<TrabalRule> result = new ArrayList<TrabalRule>();
TextRulerExample truth = each.getTruth();
TextRulerExampleDocument document = additionalDocuments.getDocuments().get(
exampleDocuments.getDocuments().indexOf(truth.getDocument()));
CAS cas = document.getCAS();
List<TrabalRuleItem> truthLeftBorder = getBorderOfExample(truth, document, cas, true);
List<TrabalRuleItem> truthRightBorder = getBorderOfExample(truth, document, cas, false);
TextRulerTarget target = truth.getTarget();
TrabalAnnotation truthAnnotation = (TrabalAnnotation) truth.getAnnotation();
for (TrabalRuleItem front : truthLeftBorder) {