Package psidev.psi.mi.jami.listener.impl
Class ParticipantEvidenceChangeLogger<T extends ParticipantEvidence>
- java.lang.Object
-
- psidev.psi.mi.jami.listener.impl.ParticipantChangeLogger<T>
-
- psidev.psi.mi.jami.listener.impl.ParticipantEvidenceChangeLogger<T>
-
- All Implemented Interfaces:
EventListener,AliasesChangeListener<T>,AnnotationsChangeListener<T>,ConfidencesChangeListener<T>,EntityChangeListener<T>,EntityInteractorChangeListener,ParametersChangeListener<T>,ParticipantChangeListener<T>,ParticipantEvidenceChangeListener<T>,XrefsChangeListener<T>
- Direct Known Subclasses:
ExperimentalParticipantPoolChangeLogger,ParticipantEvidenceEnricherLogger
public class ParticipantEvidenceChangeLogger<T extends ParticipantEvidence> extends ParticipantChangeLogger<T> implements ParticipantEvidenceChangeListener<T>
This listener will just interactor change events- Since:
11/06/13
- Version:
- $Id$
- Author:
- Marine Dumousseau (marine@ebi.ac.uk)
-
-
Constructor Summary
Constructors Constructor Description ParticipantEvidenceChangeLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonAddedConfidence(T o, Confidence added)Listen to the event where a confidence has been added to the object confidences.voidonAddedExperimentalPreparation(T entity, CvTerm added)onAddedExperimentalPreparationvoidonAddedIdentificationMethod(T entity, CvTerm added)onAddedIdentificationMethodvoidonAddedParameter(T o, Parameter added)Listen to the event where a parameter has been added to the object parameters.voidonExperimentalRoleUpdate(T entity, CvTerm oldTerm)onExperimentalRoleUpdatevoidonExpressedInUpdate(T entity, Organism oldOrganism)onExpressedInUpdatevoidonRemovedConfidence(T o, Confidence removed)Listen to the event where a confidence has been removed from the object confidences.voidonRemovedExperimentalPreparation(T entity, CvTerm removed)onRemovedExperimentalPreparationvoidonRemovedIdentificationMethod(T entity, CvTerm removed)onRemovedIdentificationMethodvoidonRemovedParameter(T o, Parameter removed)Listen to the event where a parameter has been removed from the object parameters.-
Methods inherited from class psidev.psi.mi.jami.listener.impl.ParticipantChangeLogger
onAddedAlias, onAddedAnnotation, onAddedCausalRelationship, onAddedFeature, onAddedXref, onBiologicalRoleUpdate, onInteractorUpdate, onRemovedAlias, onRemovedAnnotation, onRemovedCausalRelationship, onRemovedFeature, onRemovedXref, onStoichiometryUpdate
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface psidev.psi.mi.jami.listener.AliasesChangeListener
onAddedAlias, onRemovedAlias
-
Methods inherited from interface psidev.psi.mi.jami.listener.AnnotationsChangeListener
onAddedAnnotation, onRemovedAnnotation
-
Methods inherited from interface psidev.psi.mi.jami.listener.EntityChangeListener
onAddedCausalRelationship, onAddedFeature, onRemovedCausalRelationship, onRemovedFeature, onStoichiometryUpdate
-
Methods inherited from interface psidev.psi.mi.jami.listener.EntityInteractorChangeListener
onInteractorUpdate
-
Methods inherited from interface psidev.psi.mi.jami.listener.ParticipantChangeListener
onBiologicalRoleUpdate
-
Methods inherited from interface psidev.psi.mi.jami.listener.XrefsChangeListener
onAddedXref, onRemovedXref
-
-
-
-
Method Detail
-
onExperimentalRoleUpdate
public void onExperimentalRoleUpdate(T entity, CvTerm oldTerm)
onExperimentalRoleUpdate
- Specified by:
onExperimentalRoleUpdatein interfaceParticipantEvidenceChangeListener<T extends ParticipantEvidence>- Parameters:
entity- : updated participantoldTerm- : old role
-
onExpressedInUpdate
public void onExpressedInUpdate(T entity, Organism oldOrganism)
onExpressedInUpdate
- Specified by:
onExpressedInUpdatein interfaceParticipantEvidenceChangeListener<T extends ParticipantEvidence>- Parameters:
entity- : updated participantoldOrganism- : old organism
-
onAddedIdentificationMethod
public void onAddedIdentificationMethod(T entity, CvTerm added)
onAddedIdentificationMethod
- Specified by:
onAddedIdentificationMethodin interfaceParticipantEvidenceChangeListener<T extends ParticipantEvidence>- Parameters:
entity- : updated participantadded- : added method
-
onRemovedIdentificationMethod
public void onRemovedIdentificationMethod(T entity, CvTerm removed)
onRemovedIdentificationMethod
- Specified by:
onRemovedIdentificationMethodin interfaceParticipantEvidenceChangeListener<T extends ParticipantEvidence>- Parameters:
entity- : updated participantremoved- : removed method
-
onAddedExperimentalPreparation
public void onAddedExperimentalPreparation(T entity, CvTerm added)
onAddedExperimentalPreparation
- Specified by:
onAddedExperimentalPreparationin interfaceParticipantEvidenceChangeListener<T extends ParticipantEvidence>- Parameters:
entity- : updated participantadded- : added preparation
-
onRemovedExperimentalPreparation
public void onRemovedExperimentalPreparation(T entity, CvTerm removed)
onRemovedExperimentalPreparation
- Specified by:
onRemovedExperimentalPreparationin interfaceParticipantEvidenceChangeListener<T extends ParticipantEvidence>- Parameters:
entity- : updated participantremoved- : removed preparation
-
onAddedConfidence
public void onAddedConfidence(T o, Confidence added)
Listen to the event where a confidence has been added to the object confidences.- Specified by:
onAddedConfidencein interfaceConfidencesChangeListener<T extends ParticipantEvidence>- Parameters:
o- The object which has changed.added- The added confidence.
-
onRemovedConfidence
public void onRemovedConfidence(T o, Confidence removed)
Listen to the event where a confidence has been removed from the object confidences.- Specified by:
onRemovedConfidencein interfaceConfidencesChangeListener<T extends ParticipantEvidence>- Parameters:
o- The object which has changed.removed- The removed confidence.
-
onAddedParameter
public void onAddedParameter(T o, Parameter added)
Listen to the event where a parameter has been added to the object parameters.- Specified by:
onAddedParameterin interfaceParametersChangeListener<T extends ParticipantEvidence>- Parameters:
o- The object which has changed.added- The added parameter.
-
onRemovedParameter
public void onRemovedParameter(T o, Parameter removed)
Listen to the event where a parameter has been removed from the object parameters.- Specified by:
onRemovedParameterin interfaceParametersChangeListener<T extends ParticipantEvidence>- Parameters:
o- The object which has changed.removed- The removed parameter.
-
-