Search
XmlSerializationContext.readTag Method
See Also
 






Reads the specified tag for the specified object.

Namespace: com.mindfusion.scheduling.model
Package: com.mindfusion.scheduling.model

 Syntax

Java  Copy Code

public Object readTag (
    Object item,
    String elementName,
    Element parentElement
)

 Parameters

item

The Item whose tag is being deserialized.

elementName

The name of the element containing the tag object.

parentElement

The parent element of the node with the specified name.

 Return Value

An object. Returns null if there is no element with the specified name under the specified parent or if the tag cannot be deserialized.

 Remarks

Tags are read similarly to arbitrary objects except that the client of the calendar is given a chance to perform custom deserialization through event handling.

 See Also