001package org.biopax.paxtools.model.level2;
002
003import java.util.Set;
004
005
006public interface xref extends externalReferenceUtilityClass
007{
008// -------------------------- OTHER METHODS --------------------------
009
010// --------------------- ACCESORS and MUTATORS---------------------
011        String getDB();
012
013        String getDB_VERSION();
014
015        String getID();
016
017        String getID_VERSION();
018
019        Set<XReferrable> isXREFof();
020
021        void setDB(String DB);
022
023        void setDB_VERSION(String DB_VERSION);
024
025        void setID(String ID);
026
027        void setID_VERSION(String ID_VERSION);
028}