001package org.biopax.paxtools.model.level2;
002
003import java.util.Set;
004
005
006public interface physicalEntity extends entity
007{
008// -------------------------- OTHER METHODS --------------------------
009
010        Set<physicalEntityParticipant> isPHYSICAL_ENTITYof();
011
012        Set<interaction> getAllInteractions();
013        <T extends interaction> Set<T> getAllInteractions(
014                Class<T> ofType);
015
016        void addPHYSICAL_ENTITYof(physicalEntityParticipant pep);
017
018        void removePHYSICAL_ENTITYof(physicalEntityParticipant pep);
019}