Package psidev.psi.mi.jami.listener.impl
Class ModelledInteractionChangeLogger<I extends ModelledInteraction>
- java.lang.Object
-
- psidev.psi.mi.jami.listener.impl.InteractionChangeLogger<I>
-
- psidev.psi.mi.jami.listener.impl.ModelledInteractionChangeLogger<I>
-
- All Implemented Interfaces:
EventListener
,AnnotationsChangeListener<I>
,ChecksumsChangeListener<I>
,ConfidencesChangeListener<I>
,IdentifiersChangeListener<I>
,InteractionChangeListener<I>
,ModelledInteractionChangeListener<I>
,ParametersChangeListener<I>
,XrefsChangeListener<I>
- Direct Known Subclasses:
ModelledInteractionEnricherLogger
public class ModelledInteractionChangeLogger<I extends ModelledInteraction> extends InteractionChangeLogger<I> implements ModelledInteractionChangeListener<I>
This listener will just modelledInteraction change events- Since:
11/06/13
- Version:
- $Id$
- Author:
- Marine Dumousseau (marine@ebi.ac.uk)
-
-
Constructor Summary
Constructors Constructor Description ModelledInteractionChangeLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAddedConfidence(I o, Confidence added)
Listen to the event where a confidence has been added to the object confidences.void
onAddedCooperativeEffect(I o, CooperativeEffect added)
onAddedCooperativeEffectvoid
onAddedInteractionEvidence(I interaction, InteractionEvidence added)
onAddedInteractionEvidencevoid
onAddedParameter(I o, Parameter added)
Listen to the event where a parameter has been added to the object parameters.void
onEvidenceTypeUpdate(I interaction, CvTerm oldType)
onEvidenceTypeUpdatevoid
onRemovedConfidence(I o, Confidence removed)
Listen to the event where a confidence has been removed from the object confidences.void
onRemovedCooperativeEffect(I o, CooperativeEffect removed)
onRemovedCooperativeEffectvoid
onRemovedInteractionEvidence(I interaction, InteractionEvidence removed)
onRemovedInteractionEvidencevoid
onRemovedParameter(I o, Parameter removed)
Listen to the event where a parameter has been removed from the object parameters.void
onSourceUpdate(I interaction, Source oldSource)
onSourceUpdate-
Methods inherited from class psidev.psi.mi.jami.listener.impl.InteractionChangeLogger
onAddedAnnotation, onAddedChecksum, onAddedIdentifier, onAddedParticipant, onAddedXref, onCreatedDateUpdate, onInteractionTypeUpdate, onRemovedAnnotation, onRemovedChecksum, onRemovedIdentifier, onRemovedParticipant, onRemovedXref, onShortNameUpdate, onUpdatedDateUpdate
-
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.AnnotationsChangeListener
onAddedAnnotation, onRemovedAnnotation
-
Methods inherited from interface psidev.psi.mi.jami.listener.ChecksumsChangeListener
onAddedChecksum, onRemovedChecksum
-
Methods inherited from interface psidev.psi.mi.jami.listener.IdentifiersChangeListener
onAddedIdentifier, onRemovedIdentifier
-
Methods inherited from interface psidev.psi.mi.jami.listener.InteractionChangeListener
onAddedParticipant, onCreatedDateUpdate, onInteractionTypeUpdate, onRemovedParticipant, onShortNameUpdate, onUpdatedDateUpdate
-
Methods inherited from interface psidev.psi.mi.jami.listener.XrefsChangeListener
onAddedXref, onRemovedXref
-
-
-
-
Method Detail
-
onSourceUpdate
public void onSourceUpdate(I interaction, Source oldSource)
onSourceUpdate
- Specified by:
onSourceUpdate
in interfaceModelledInteractionChangeListener<I extends ModelledInteraction>
- Parameters:
interaction
- : updated interactionoldSource
- : old source
-
onEvidenceTypeUpdate
public void onEvidenceTypeUpdate(I interaction, CvTerm oldType)
onEvidenceTypeUpdate
- Specified by:
onEvidenceTypeUpdate
in interfaceModelledInteractionChangeListener<I extends ModelledInteraction>
- Parameters:
interaction
- : updated interactionoldType
- : old evidence type
-
onAddedInteractionEvidence
public void onAddedInteractionEvidence(I interaction, InteractionEvidence added)
onAddedInteractionEvidence
- Specified by:
onAddedInteractionEvidence
in interfaceModelledInteractionChangeListener<I extends ModelledInteraction>
- Parameters:
interaction
- : updated interactionadded
- : added evidence
-
onRemovedInteractionEvidence
public void onRemovedInteractionEvidence(I interaction, InteractionEvidence removed)
onRemovedInteractionEvidence
- Specified by:
onRemovedInteractionEvidence
in interfaceModelledInteractionChangeListener<I extends ModelledInteraction>
- Parameters:
interaction
- : updated interactionremoved
- : removed evidence
-
onAddedConfidence
public void onAddedConfidence(I o, Confidence added)
Listen to the event where a confidence has been added to the object confidences.- Specified by:
onAddedConfidence
in interfaceConfidencesChangeListener<I extends ModelledInteraction>
- Parameters:
o
- The object which has changed.added
- The added confidence.
-
onRemovedConfidence
public void onRemovedConfidence(I o, Confidence removed)
Listen to the event where a confidence has been removed from the object confidences.- Specified by:
onRemovedConfidence
in interfaceConfidencesChangeListener<I extends ModelledInteraction>
- Parameters:
o
- The object which has changed.removed
- The removed confidence.
-
onAddedParameter
public void onAddedParameter(I o, Parameter added)
Listen to the event where a parameter has been added to the object parameters.- Specified by:
onAddedParameter
in interfaceParametersChangeListener<I extends ModelledInteraction>
- Parameters:
o
- The object which has changed.added
- The added parameter.
-
onRemovedParameter
public void onRemovedParameter(I o, Parameter removed)
Listen to the event where a parameter has been removed from the object parameters.- Specified by:
onRemovedParameter
in interfaceParametersChangeListener<I extends ModelledInteraction>
- Parameters:
o
- The object which has changed.removed
- The removed parameter.
-
onAddedCooperativeEffect
public void onAddedCooperativeEffect(I o, CooperativeEffect added)
onAddedCooperativeEffect
- Specified by:
onAddedCooperativeEffect
in interfaceModelledInteractionChangeListener<I extends ModelledInteraction>
- Parameters:
o
- : updated interactionadded
- : added effect
-
onRemovedCooperativeEffect
public void onRemovedCooperativeEffect(I o, CooperativeEffect removed)
onRemovedCooperativeEffect
- Specified by:
onRemovedCooperativeEffect
in interfaceModelledInteractionChangeListener<I extends ModelledInteraction>
- Parameters:
o
- : updated interactionremoved
- : removed effect
-
-