Uses of Interface
edu.umd.cs.findbugs.xml.XMLOutput

Packages that use XMLOutput
edu.umd.cs.findbugs Main package for the FindBugs application - contains the engine class (FindBugs), the object model classes for bug instances (BugInstance, BugAnnotation), and other miscellany. 
edu.umd.cs.findbugs.ba A bytecode analysis framework for BCEL, providing CFG construction, generic dataflow analysis, and a variety of specific dataflow analyses. 
edu.umd.cs.findbugs.model Eventually, all model classes (BugInstance, BugCollection, etc.) should go in this package. 
edu.umd.cs.findbugs.xml   
 

Uses of XMLOutput in edu.umd.cs.findbugs
 

Methods in edu.umd.cs.findbugs with parameters of type XMLOutput
static void PackageStats.writeBugPriorities(XMLOutput xmlOutput, int[] bugs)
          Add priority attributes to a started tag.
 void BugCollection.writeEpilogue(XMLOutput xmlOutput)
           
 void SortedBugCollection.writeEpilogue(XMLOutput xmlOutput)
           
 void BugCollection.writePrologue(XMLOutput xmlOutput, Project project)
           
 void SortedBugCollection.writePrologue(XMLOutput xmlOutput, Project project)
           
 void BugInstance.writeXML(XMLOutput xmlOutput)
           
 void SourceLineAnnotation.writeXML(XMLOutput xmlOutput)
           
 void Project.writeXML(XMLOutput xmlOutput)
           
 void StringAnnotation.writeXML(XMLOutput xmlOutput)
           
 void BugProperty.writeXML(XMLOutput xmlOutput)
           
 void PackageStats.writeXML(XMLOutput xmlOutput)
           
 void PackageStats.ClassStats.writeXML(XMLOutput xmlOutput)
           
 void LocalVariableAnnotation.writeXML(XMLOutput xmlOutput)
           
 void MethodAnnotation.writeXML(XMLOutput xmlOutput)
           
 void ProjectStats.writeXML(XMLOutput xmlOutput)
          Output as XML.
 void IntAnnotation.writeXML(XMLOutput xmlOutput)
           
 void ClassAnnotation.writeXML(XMLOutput xmlOutput)
           
 void AppVersion.writeXML(XMLOutput xmlOutput)
           
 void FieldAnnotation.writeXML(XMLOutput xmlOutput)
           
 void BugInstance.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void SourceLineAnnotation.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void StringAnnotation.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void LocalVariableAnnotation.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void MethodAnnotation.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void IntAnnotation.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void ClassAnnotation.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void FieldAnnotation.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void XMLWriteableWithMessages.writeXML(XMLOutput xmlOutput, boolean addMessages)
           
 void BugCollection.writeXML(XMLOutput xmlOutput, Project project)
          Write the BugCollection to an XMLOutput object.
 void SortedBugCollection.writeXML(XMLOutput xmlOutput, Project project)
          Write the BugCollection to an XMLOutput object.
static void BugAnnotationUtil.writeXML(XMLOutput xmlOutput, java.lang.String elementName, BugAnnotation annotation, XMLAttributeList attributeList, boolean addMessages)
          Write a BugAnnotation as XML.
 

Uses of XMLOutput in edu.umd.cs.findbugs.ba
 

Methods in edu.umd.cs.findbugs.ba with parameters of type XMLOutput
 void ClassHash.writeXML(XMLOutput xmlOutput)
           
 

Uses of XMLOutput in edu.umd.cs.findbugs.model
 

Methods in edu.umd.cs.findbugs.model with parameters of type XMLOutput
 void ClassFeatureSet.writeXML(XMLOutput xmlOutput)
           
 

Uses of XMLOutput in edu.umd.cs.findbugs.xml
 

Classes in edu.umd.cs.findbugs.xml that implement XMLOutput
 class Dom4JXMLOutput
          XMLOutput class to build all or part of a dom4j tree.
 class OutputStreamXMLOutput
          Write XML to an output stream.
 

Methods in edu.umd.cs.findbugs.xml with parameters of type XMLOutput
static void XMLOutputUtil.writeCollection(XMLOutput xmlOutput, java.util.Collection<? extends XMLWriteable> collection)
          Write a Collection of XMLWriteable objects.
static void XMLOutputUtil.writeElementList(XMLOutput xmlOutput, java.lang.String tagName, java.util.Collection<java.lang.String> listValues)
          Write a list of Strings to document as elements with given tag name.
static void XMLOutputUtil.writeElementList(XMLOutput xmlOutput, java.lang.String tagName, java.util.Iterator<java.lang.String> listValueIterator)
          Write a list of Strings to document as elements with given tag name.
 void XMLWriteable.writeXML(XMLOutput xmlOutput)
          Write this object to given XMLOutput.