001package org.biopax.paxtools.model.level2;
002
003import java.util.Set;
004
005
006public interface interaction extends process
007{
008        // --------------------- ACCESORS and MUTATORS---------------------
009
010        void addPARTICIPANTS(InteractionParticipant aParticipant);
011
012        Set<InteractionParticipant> getPARTICIPANTS();
013
014        void removePARTICIPANTS(InteractionParticipant aParticipant);
015
016        void setPARTICIPANTS(Set<InteractionParticipant> PARTICIPANTS);
017        
018}