Package psidev.psi.mi.jami.listener
Interface PolymerChangeListener<P extends Polymer>
-
- All Superinterfaces:
AliasesChangeListener<P>
,AnnotationsChangeListener<P>
,ChecksumsChangeListener<P>
,EventListener
,IdentifiersChangeListener<P>
,InteractorChangeListener<P>
,XrefsChangeListener<P>
- All Known Subinterfaces:
PolymerEnricherListener<T>
,ProteinChangeListener
,ProteinEnricherListener
,ProteinListeningFeatureEnricher<F>
- All Known Implementing Classes:
FullFeatureEnricher
,FullFeatureEvidenceEnricher
,FullFeatureEvidenceUpdater
,FullFeatureUpdater
,MinimalFeatureEnricher
,MinimalFeatureEvidenceEnricher
,MinimalFeatureEvidenceUpdater
,MinimalFeatureUpdater
,PolymerChangeLogger
,PolymerEnricherListenerManager
,PolymerEnricherLogger
,PolymerEnricherStatisticsWriter
,ProteinChangeLogger
,ProteinEnricherListenerManager
,ProteinEnricherLogger
,ProteinEnricherStatisticsWriter
public interface PolymerChangeListener<P extends Polymer> extends InteractorChangeListener<P>
Listener for changes in polymer- Since:
30/01/14
- Version:
- $Id$
- Author:
- Marine Dumousseau (marine@ebi.ac.uk)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onSequenceUpdate(P protein, String oldSequence)
Listen to the event where the sequence of a protein has been changed.-
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.ChecksumsChangeListener
onAddedChecksum, onRemovedChecksum
-
Methods inherited from interface psidev.psi.mi.jami.listener.IdentifiersChangeListener
onAddedIdentifier, onRemovedIdentifier
-
Methods inherited from interface psidev.psi.mi.jami.listener.InteractorChangeListener
onFullNameUpdate, onInteractorTypeUpdate, onOrganismUpdate, onShortNameUpdate
-
Methods inherited from interface psidev.psi.mi.jami.listener.XrefsChangeListener
onAddedXref, onRemovedXref
-
-
-
-
Method Detail
-
onSequenceUpdate
void onSequenceUpdate(P protein, String oldSequence)
Listen to the event where the sequence of a protein has been changed. If oldSequence is null, it means that the sequence has been initialised. If the sequence of the protein is null, it means that the sequence of the protein has been reset- Parameters:
protein
- : updated polymeroldSequence
- : old sequence
-
-