Package com.softsynth.util
Interface XMLListener
- All Known Implementing Classes:
InstrumentXMLLoader,MixerPanelSettingsXMLLoader,NoteXMLLoader,OrchestraXMLLoader,ScoreXMLLoader,SimpleXMLLoader,XMLPrinter
public interface XMLListener
Listener for parsing an XML stream.
- Author:
- (C) 1997 Phil Burk, All Rights Reserved
- See Also:
XMLReader,XMLPrinter
-
Method Summary
Modifier and Type Method Description voidbeginElement(java.lang.String tag, java.util.Hashtable attributes, boolean ifEmpty)Handles the start of an element.voidendElement(java.lang.String tag)Handles the end of an element.voidfoundContent(java.lang.String content)Handles the content of an element.
-
Method Details
-
beginElement
void beginElement(java.lang.String tag, java.util.Hashtable attributes, boolean ifEmpty)Handles the start of an element. The flag ifEmpty if there is no content or endTag. -
foundContent
void foundContent(java.lang.String content)Handles the content of an element. -
endElement
void endElement(java.lang.String tag)Handles the end of an element.
-