public interface InputHandler
InputNotifier.
It must be previously registered with the InputNotifier.addHandler(InputHandler).
InputNotifier| Modifier and Type | Method and Description |
|---|---|
void |
processAttribute(Attribute attribute)
Process an attribute in the current element.
|
void |
processCharacters(String characters)
Process a set of characters.
|
void |
processEndDocument()
Process the end of a document.
|
void |
processEndElement()
Process the end of the current element.
|
void |
processReference(Reference reference)
Process a reference from the current element to another element.
|
void |
processStartDocument()
Process the start of a document.
|
void |
processStartElement(Classifier classifier)
Process the start of an element.
|
void processStartDocument()
InputNotifier.notifyStartDocument()void processStartElement(Classifier classifier)
classifier - the classifier of the new elementInputNotifier.notifyStartElement(Classifier)void processAttribute(Attribute attribute)
An attribute is a simple key/value.
attribute - the new attributeInputNotifier.notifyAttribute(Attribute)void processReference(Reference reference)
A reference is an attribute which is link to another element.
reference - the new referenceInputNotifier.notifyReference(Reference)void processEndElement()
InputNotifier.notifyEndElement()void processEndDocument()
InputNotifier.notifyEndDocument()void processCharacters(String characters)
characters - the new charactersInputNotifier.notifyCharacters(String)Copyright © 2013–2017 Atlanmod INRIA LINA Mines Nantes. All rights reserved.