ExtXmlDeserializable

Interface that allows more customization on child deserialization than SimpleXmlDeserializable. Created by pdvrieze on 04/11/15.

Properties

Link copied to clipboard

The name of the element, needed for the automated validation

Functions

Link copied to clipboard
open fun deserializeAttribute(attributeNamespace: String?, attributeLocalName: String, attributeValue: String): Boolean

Handle the given attribute.

Link copied to clipboard
abstract fun deserializeChildren(reader: XmlReader)

Called to have all children of the current node deserialized. The attributes have already been parsed. The expected end state is that the streamreader is at the corresponding endElement.

Link copied to clipboard

Listener called just before the children are deserialized. After attributes have been processed.