001package org.biopax.paxtools.model.level2;
002
003import java.util.Set;
004
005
006public interface conversion extends physicalInteraction
007{
008        Set<physicalEntityParticipant> getLEFT();
009
010        Set<physicalEntityParticipant> getRIGHT();
011
012        SpontaneousType getSPONTANEOUS();
013
014        void addLEFT(physicalEntityParticipant LEFT);
015
016        void addRIGHT(physicalEntityParticipant RIGHT);
017
018        void removeLEFT(physicalEntityParticipant LEFT);
019
020        void removeRIGHT(physicalEntityParticipant RIGHT);
021
022        void setLEFT(Set<physicalEntityParticipant> LEFT);
023
024        void setRIGHT(Set<physicalEntityParticipant> RIGHT);
025
026        void setSPONTANEOUS(SpontaneousType SPONTANEOUS);
027}