Interface ProteinMapper
-
- All Known Implementing Classes:
MockProteinMapper
public interface ProteinMapper
Created 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 ProteinMapperListener
getListener()
getListener.void
map(Protein p)
Will remap the protein using the settings provided.void
setListener(ProteinMapperListener listener)
setListener.
-
-
-
Method Detail
-
setListener
void setListener(ProteinMapperListener listener)
setListener.
- Parameters:
listener
- aProteinMapperListener
object.
-
getListener
ProteinMapperListener getListener()
getListener.
- Returns:
- a
ProteinMapperListener
object.
-
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
- aProtein
object.- Throws:
BridgeFailedException
- if any.
-
-