Package psidev.psi.mi.jami.listener.impl
Class ParticipantPoolChangeLogger<T extends ParticipantPool>
- java.lang.Object
-
- psidev.psi.mi.jami.listener.impl.ParticipantChangeLogger<T>
-
- psidev.psi.mi.jami.listener.impl.ParticipantPoolChangeLogger<T>
-
- All Implemented Interfaces:
EventListener
,AliasesChangeListener<T>
,AnnotationsChangeListener<T>
,EntityChangeListener<T>
,EntityInteractorChangeListener
,ParticipantChangeListener<T>
,ParticipantPoolChangeListener<T>
,XrefsChangeListener<T>
- Direct Known Subclasses:
ParticipantPoolEnricherLogger
public class ParticipantPoolChangeLogger<T extends ParticipantPool> extends ParticipantChangeLogger<T> implements ParticipantPoolChangeListener<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 ParticipantPoolChangeLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAddedCandidate(T protein, ParticipantCandidate added)
onAddedCandidatevoid
onRemovedCandidate(T protein, ParticipantCandidate removed)
onRemovedCandidatevoid
onTypeUpdate(T entity, CvTerm oldTerm)
onTypeUpdate-
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
-
onTypeUpdate
public void onTypeUpdate(T entity, CvTerm oldTerm)
onTypeUpdate
- Specified by:
onTypeUpdate
in interfaceParticipantPoolChangeListener<T extends ParticipantPool>
- Parameters:
entity
- : updated participantoldTerm
- : old type
-
onAddedCandidate
public void onAddedCandidate(T protein, ParticipantCandidate added)
onAddedCandidate
- Specified by:
onAddedCandidate
in interfaceParticipantPoolChangeListener<T extends ParticipantPool>
- Parameters:
protein
- : updated participantadded
- : added candidate
-
onRemovedCandidate
public void onRemovedCandidate(T protein, ParticipantCandidate removed)
onRemovedCandidate
- Specified by:
onRemovedCandidate
in interfaceParticipantPoolChangeListener<T extends ParticipantPool>
- Parameters:
protein
- : updated participantremoved
- : removed candidate
-
-