001package org.biopax.paxtools.pattern.miner;
002
003import org.biopax.paxtools.model.BioPAXElement;
004
005import java.util.Set;
006
007/**
008 * @author Ozgun Babur
009 */
010public interface IDFetcher
011{
012        /**
013         * Finds a String ID for the given element.
014         * @param ele element to fecth the ID from
015         * @return ID
016         */
017        public Set<String> fetchID(BioPAXElement ele);
018}