Currently, it is possible to add incomplete AnnotationItem:s to a CodingStudy. That
is, annotation items containing less AnnotationUnit:s than the study's number of raters.
Raise exceptions for the marked cases of:
CodingAnnotationStudy study = new CodingAnnotationStudy(3);
study.addItem("B", "A"); // Should raise exception b/c item count != 3
study.addItem("A", "B", "C"); // ok
study.addItem(new String[]{"A", "B", "C"}); // Should raise exception b/c item count
!= 3
study.addItemAsArray(new String[]{"A", "B", "C"}); // ok
Originally reported on Google Code with ID 11
Reported by
chmeyer.de
on 2014-11-28 15:02:54