Interface ProteinMapper
-
- All Known Implementing Classes:
MockProteinMapper
public interface ProteinMapperCreated with IntelliJ IDEA.- Since:
- 07/06/13
- Author:
- Gabriel Aldam (galdam@ebi.ac.uk)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProteinMapperListenergetListener()getListener.voidmap(Protein p)Will remap the protein using the settings provided.voidsetListener(ProteinMapperListener listener)setListener.
-
-
-
Method Detail
-
setListener
void setListener(ProteinMapperListener listener)
setListener.
- Parameters:
listener- aProteinMapperListenerobject.
-
getListener
ProteinMapperListener getListener()
getListener.
- Returns:
- a
ProteinMapperListenerobject.
-
map
void map(Protein p) throws BridgeFailedException
Will remap the protein using the settings provided. A remapReport will be fired to all RemapListeners at the end.- Parameters:
p- aProteinobject.- Throws:
BridgeFailedException- if any.
-
-