Interface ProteinMapperListener
-
- All Known Implementing Classes:
ProteinMappingLogger
,ProteinMappingStatisticsWriter
public interface ProteinMapperListener
Created with IntelliJ IDEA.- Since:
- 05/06/13
- Author:
- Gabriel Aldam (galdam@ebi.ac.uk)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onFailedMapping(Protein p, Collection<String> report)
onFailedMapping.void
onSuccessfulMapping(Protein p, Collection<String> report)
A stacked report listing the exit case first, followed by any errors, the approaches used and the strategy.void
onToBeReviewedMapping(Protein p, Collection<String> report)
onToBeReviewedMapping.
-
-
-
Method Detail
-
onSuccessfulMapping
void onSuccessfulMapping(Protein p, Collection<String> report)
A stacked report listing the exit case first, followed by any errors, the approaches used and the strategy.- Parameters:
p
- aProtein
object.report
- aCollection
object.
-
onFailedMapping
void onFailedMapping(Protein p, Collection<String> report)
onFailedMapping.
- Parameters:
p
- aProtein
object.report
- aCollection
object.
-
onToBeReviewedMapping
void onToBeReviewedMapping(Protein p, Collection<String> report)
onToBeReviewedMapping.
- Parameters:
p
- aProtein
object.report
- aCollection
object.
-
-