Uses of Interface
org.apache.rat.report.xml.writer.IXmlWriter
Packages that use IXmlWriter
Package
Description
Classes to process configuration information from/to files.
Classes that generate the Rat report.
Classes that manage claims (metrics) about files and categories of files.
Classes that write the XML output.
Classes to handle writing well-formed XML documents.
-
Uses of IXmlWriter in org.apache.rat.configuration
Methods in org.apache.rat.configuration with parameters of type IXmlWriterModifier and TypeMethodDescriptionvoid
XMLConfigurationWriter.write
(IXmlWriter writer) Writes the configuration to an IXmlWriter instance. -
Uses of IXmlWriter in org.apache.rat.report
Constructors in org.apache.rat.report with parameters of type IXmlWriterModifierConstructorDescriptionConfigurationReport
(IXmlWriter writer, ReportConfiguration configuration) Constructor. -
Uses of IXmlWriter in org.apache.rat.report.claim
Constructors in org.apache.rat.report.claim with parameters of type IXmlWriterModifierConstructorDescriptionClaimReporterMultiplexer
(IXmlWriter writer, boolean dryRun, DocumentAnalyser analyser, List<? extends RatReport> reporters) A multiplexer to run multiple claim reports.ClaimValidatorReport
(IXmlWriter writer, ClaimStatistic statistic, ReportConfiguration configuration) Constructor.SimpleXmlClaimReporter
(IXmlWriter writer) Constructor. -
Uses of IXmlWriter in org.apache.rat.report.xml
Methods in org.apache.rat.report.xml with parameters of type IXmlWriterModifier and TypeMethodDescriptionstatic RatReport
XmlReportFactory.createStandardReport
(IXmlWriter writer, ClaimStatistic statistic, ReportConfiguration configuration) Creates a RatReport from the arguments.Constructors in org.apache.rat.report.xml with parameters of type IXmlWriter -
Uses of IXmlWriter in org.apache.rat.report.xml.writer
Classes in org.apache.rat.report.xml.writer that implement IXmlWriterMethods in org.apache.rat.report.xml.writer that return IXmlWriterModifier and TypeMethodDescriptionIXmlWriter.attribute
(CharSequence name, CharSequence value) Writes an attribute of an element.XmlWriter.attribute
(CharSequence name, CharSequence value) Writes an attribute of an element.IXmlWriter.cdata
(CharSequence content) Writes CDATA content.XmlWriter.cdata
(CharSequence content) IXmlWriter.closeDocument()
Closes all pending elements.XmlWriter.closeDocument()
Closes all pending elements.IXmlWriter.closeElement()
Closes the last element written.IXmlWriter.closeElement
(CharSequence name) Closes all open elements back to and including the named element.XmlWriter.closeElement()
Closes the last element written.XmlWriter.closeElement
(CharSequence name) Closes back to and including the last instance of the specified element name.IXmlWriter.comment
(CharSequence text) Writes a commentXmlWriter.comment
(CharSequence text) IXmlWriter.content
(CharSequence content) Writes content.XmlWriter.content
(CharSequence content) IXmlWriter.openElement
(CharSequence elementName) Writes the start of an element.default IXmlWriter
IXmlWriter.openElement
(XmlElements.Elements element) Writes the start of an element.XmlWriter.openElement
(CharSequence elementName) Writes the start of an element.IXmlWriter.startDocument()
Starts a document by writing a prolog.XmlWriter.startDocument()
Starts a document by writing a prolog.