Package org.biojava.ontology.obo
Interface OboFileEventListener
-
- All Known Implementing Classes:
OboFileHandler
public interface OboFileEventListeneran interface for events that occur during parsing of .obo files- Author:
- Andreas Prlic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddocumentEnd()end of parsing a new OBO filevoiddocumentStart()starting to parse a new OBO filevoidnewKey(java.lang.String key, java.lang.String value)found a new key in the filevoidnewOboFileHeader()parsed a new OBO file headervoidnewStanza(java.lang.String stanza)parsed a new stanza in the filevoidnewSynonym(Synonym synonym)a new synonym has been found
-
-
-
Method Detail
-
documentStart
void documentStart()
starting to parse a new OBO file
-
documentEnd
void documentEnd()
end of parsing a new OBO file
-
newOboFileHeader
void newOboFileHeader()
parsed a new OBO file header
-
newStanza
void newStanza(java.lang.String stanza)
parsed a new stanza in the file- Parameters:
stanza-
-
newKey
void newKey(java.lang.String key, java.lang.String value)found a new key in the file- Parameters:
key-value-
-
newSynonym
void newSynonym(Synonym synonym)
a new synonym has been found- Parameters:
synonym-
-
-