edu.umd.cs.findbugs.xml
public abstract class XMLOutputUtil extends Object
See Also: XMLOutput
Method Summary | |
---|---|
static void | writeCollection(XMLOutput xmlOutput, Collection<? extends XMLWriteable> collection)
Write a Collection of XMLWriteable objects.
|
static void | writeElementList(XMLOutput xmlOutput, String tagName, Collection<String> listValues)
Write a list of Strings to document as elements
with given tag name.
|
static void | writeElementList(XMLOutput xmlOutput, String tagName, Iterator<String> listValueIterator)
Write a list of Strings to document as elements
with given tag name.
|
Parameters: xmlOutput the XMLOutput object to write to collection Collection of XMLWriteable objects
Parameters: xmlOutput the XMLOutput object to write to tagName the tag name listValues Collection of String values to write
Parameters: xmlOutput the XMLOutput object to write to tagName the tag name listValueIterator Iterator over String values to write