001package org.biopax.paxtools.io.sbgn;
002
003import org.biopax.paxtools.model.level3.PhysicalEntity;
004
005/**
006 * Interface for ubiquitous molecule detection.
007 *
008 * @author Ozgun Babur
009 */
010public interface UbiqueDetector
011{
012        /**
013         * Checks if the PhysicalEntity is a ubiquitous molecule.
014         * @param pe PhysicalEntity to check
015         * @return true if ubique
016         */
017        public boolean isUbique(PhysicalEntity pe);
018}