001package org.biopax.paxtools.model.level3;
002
003
004import java.util.Set;
005
006/**
007 * Tagging interface for entities that can participate in a pathway
008 * and can be targeted by a control : Pathway and Interaction
009 */
010public interface Process extends Entity
011{
012        public Set<Control> getControlledOf();
013        
014        public Set<Pathway> getPathwayComponentOf();
015
016        public Set<PathwayStep> getStepProcessOf();
017
018}