Search
XmlSerializationContext.writeTag Method
See Also
 






Writes the specified tag of the specified object.

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

 Syntax

Java  Copy Code

public Element writeTag (
    Object item,
    Object tagValue,
    String elementName,
    Element parentElement
)

 Parameters

item

The Item whose tag is being serialized.

tagValue

The tag object to write.

elementName

The name of the element under which the value should be written.

parentElement

The parent element of the newly created node.

 Return Value

An instance of the Element class representing the newly created XML element.

 Remarks

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

 See Also