public class

XmlWireFormatProperties

extends Object
java.lang.Object
   ↳ com.google.gdata.wireformats.XmlWireFormatProperties

Class Overview

The XmlWireFormatProperties class represents the collection of properties that can be optionally configured to customize XML parsing and generation.

Summary

Fields
private XmlGenerator.ElementGenerator elementGenerator
Public Constructors
XmlWireFormatProperties()
Public Methods
XmlGenerator.ElementGenerator getElementGenerator()
Returns the XmlGenerator.ElementGenerator that should be used emit the XML for an element.
XmlWireFormatProperties setElementGenerator(XmlGenerator.ElementGenerator elementGenerator)
Sets the XmlGenerator.ElementGenerator that should be used emit the XML for an element.
[Expand]
Inherited Methods
From class java.lang.Object

Fields

private XmlGenerator.ElementGenerator elementGenerator

Public Constructors

public XmlWireFormatProperties ()

Public Methods

public XmlGenerator.ElementGenerator getElementGenerator ()

Returns the XmlGenerator.ElementGenerator that should be used emit the XML for an element. A value of null indicates that the default XML generation algorithm should be used.

public XmlWireFormatProperties setElementGenerator (XmlGenerator.ElementGenerator elementGenerator)

Sets the XmlGenerator.ElementGenerator that should be used emit the XML for an element. A value of null indicates that the default XML generation algorithm should be used.

Parameters
elementGenerator The element generator.