Interface ISubmissionMatchGroup<T extends ISubmissionMatch>
-
- All Known Implementing Classes:
SubmissionMatchGroup
public interface ISubmissionMatchGroup<T extends ISubmissionMatch>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddMatch(T match)Add a SubmissionMatch to the list (used by ReportGenerator)java.util.List<T>getMatches()Get the matchesjava.lang.StringgetReason()Get the descriptor
-
-
-
Method Detail
-
addMatch
void addMatch(T match)
Add a SubmissionMatch to the list (used by ReportGenerator)- Parameters:
match- the SubmissionMatch to be added
-
getMatches
java.util.List<T> getMatches()
Get the matches- Returns:
- The stored list of SubmissionMatch objects.
-
getReason
java.lang.String getReason()
Get the descriptor- Returns:
- The type of plagiarism that was detected for these matches.
-
-