Interface DeserializationHandler
- 
- All Known Implementing Classes:
- AbstractBodyDecoderHandler,- AbstractDeserializationHandler,- AbstractReentrantDeserializationHandler,- ArrayHandler,- ArrayListHandler,- AssociatedDataHandler,- BitSetHandler,- BooleanHandler,- ByteArrayHandler,- ClassHandler,- ColorHandler,- ColorStateHandler,- ComponentDeserializationHandler,- CursorHandler,- DateHandler,- DimensionHandler,- Ellipse2DDoubleHandler,- Ellipse2DFloatHandler,- EnumHandler,- EnumSetHandler,- FontHandler,- GeneralPathHandler,- IgPathHandler,- InsetsHandler,- LayoutConstraintsHandler,- MethodHandler,- NullHandler,- NumberHandler,- ObjectDeserializationHandler,- Point2DDoubleHandler,- Point2DFloatHandler,- PointHandler,- PrimitiveArrayHandler,- QualifiedPathHandler,- QualityCodeHandler,- Rectangle2DDoubleHandler,- Rectangle2DFloatHandler,- RectangleHandler,- RoundRectangle2DDoubleHandler,- RoundRectangle2DFloatHandler,- ShapeDeserializationHandler,- StringHandler,- TagPathHandler,- TagQualityHandler,- UUIDHandler
 
 public interface DeserializationHandlerA deserialization handler handles a section of an XML parsing for a specific element. Each element that is not another element's namespace child needs to produce an Object.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description DeserializationHandlerclone()Clones this handler.voidendElement(DeserializationContext context)Notifies the handler that their element has ended.voidendObject(java.lang.Object obj)Notifies the handler that an object tag was found and deserialized within their scopevoidendSubElement(java.lang.String name, DeserializationContext context)Notifies the handler that a sub-element has endedDecoder<?>getBodyDecoder()Called when body data is encountered in this tag or a sub-tag.java.lang.StringgetElementName()Returns the name of the element type that this handler ...java.lang.ObjectgetObject()Returns the most recent object that this handler created.intgetRefId()Returns the reference id that was in the start of this element, or -1 if there was nonevoidonBody(java.lang.Object body)Called when body data is encountered in this tag or a sub-tag.voidsetRefId(int id)Sets the ref-id that was found at the start of this element, if any.voidstartElement(java.lang.String name, AttributesMap attributes, DeserializationContext context)Notifies the handler that their element has started.voidstartSubElement(java.lang.String name, AttributesMap attributes, DeserializationContext context)Notifies the handler that a sub-element has started.booleansupportsNestedElements()Return true if the element type that you're parsing can have nested elements, or false if you're a singleton element.
 
- 
- 
- 
Method Detail- 
startElementvoid startElement(java.lang.String name, AttributesMap attributes, DeserializationContext context) throws java.lang.ExceptionNotifies the handler that their element has started.- Throws:
- java.lang.Exception
 
 - 
endElementvoid endElement(DeserializationContext context) throws java.lang.Exception Notifies the handler that their element has ended.- Throws:
- java.lang.Exception
 
 - 
getObjectjava.lang.Object getObject() Returns the most recent object that this handler created. Note that a handler needs to have this function return its object as early as possible, not just after endElement() has been called. This is used for populating the reference map.
 - 
startSubElementvoid startSubElement(java.lang.String name, AttributesMap attributes, DeserializationContext context) throws java.lang.ExceptionNotifies the handler that a sub-element has started.- Throws:
- java.lang.Exception
 
 - 
endSubElementvoid endSubElement(java.lang.String name, DeserializationContext context) throws java.lang.ExceptionNotifies the handler that a sub-element has ended- Throws:
- java.lang.Exception
 
 - 
onBodyvoid onBody(java.lang.Object body) Called when body data is encountered in this tag or a sub-tag. This data is first interpreted by the handler-provided decoder (seegetBodyDecoder()), and then this function will be called.
 - 
getBodyDecoderDecoder<?> getBodyDecoder() Called when body data is encountered in this tag or a sub-tag. Used to decode the body into an object, which is then passed toonBody(Object)
 - 
endObjectvoid endObject(java.lang.Object obj) Notifies the handler that an object tag was found and deserialized within their scope
 - 
getRefIdint getRefId() Returns the reference id that was in the start of this element, or -1 if there was none
 - 
setRefIdvoid setRefId(int id) Sets the ref-id that was found at the start of this element, if any.
 - 
getElementNamejava.lang.String getElementName() Returns the name of the element type that this handler ... handles.
 - 
supportsNestedElementsboolean supportsNestedElements() Return true if the element type that you're parsing can have nested elements, or false if you're a singleton element. If you return true, you need to implement clone(). Note As of Ignition 7.6.5 with support for multi-deserialization, you should also return true from this and implement clone() if your return object is mutable, otherwise instances may be shared amongst multi-deserialized objects. 
 - 
cloneDeserializationHandler clone() Clones this handler. Only handlers that support nested elements will be cloned, all others can throw an unsupported operation exception instead.
 
- 
 
-