org.jcoderz.phoenix.findbugs.jaxb
Class ObjectFactory

java.lang.Object
  extended by javax.xml.bind.JAXBContext
      extended by org.jcoderz.phoenix.report.jaxb.impl.runtime.DefaultJAXBContextImpl
          extended by org.jcoderz.phoenix.findbugs.jaxb.ObjectFactory

public class ObjectFactory
extends DefaultJAXBContextImpl

This object contains factory methods for each Java content interface and Java element interface generated in the org.jcoderz.phoenix.findbugs.jaxb package.

An ObjectFactory allows you to programatically construct new instances of the Java representation for XML content. The Java representation of XML content can consist of schema derived interfaces and classes representing the binding of schema type definitions, element declarations and model groups. Factory methods for each of these are provided in this class.


Field Summary
static GrammarInfo grammarInfo
           
static Class version
           
 
Fields inherited from class javax.xml.bind.JAXBContext
JAXB_CONTEXT_FACTORY
 
Constructor Summary
ObjectFactory()
          Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jcoderz.phoenix.findbugs.jaxb
 
Method Summary
 AuxClasspathEntry createAuxClasspathEntry()
          Create an instance of AuxClasspathEntry
 AuxClasspathEntryType createAuxClasspathEntryType()
          Create an instance of AuxClasspathEntryType
 BugCategory createBugCategory()
          Create an instance of BugCategory
 BugCategoryType createBugCategoryType()
          Create an instance of BugCategoryType
 BugCode createBugCode()
          Create an instance of BugCode
 BugCodeType createBugCodeType()
          Create an instance of BugCodeType
 BugCollection createBugCollection()
          Create an instance of BugCollection
 BugCollectionType createBugCollectionType()
          Create an instance of BugCollectionType
 BugInstance createBugInstance()
          Create an instance of BugInstance
 BugInstanceType createBugInstanceType()
          Create an instance of BugInstanceType
 BugPattern createBugPattern()
          Create an instance of BugPattern
 BugPatternType createBugPatternType()
          Create an instance of BugPatternType
 Class createClass()
          Create an instance of Class
 ClassFeatures createClassFeatures()
          Create an instance of ClassFeatures
 ClassFeaturesType createClassFeaturesType()
          Create an instance of ClassFeaturesType
 ClassProfile createClassProfile()
          Create an instance of ClassProfile
 ClassProfileType createClassProfileType()
          Create an instance of ClassProfileType
 ClassStats createClassStats()
          Create an instance of ClassStats
 ClassStatsType createClassStatsType()
          Create an instance of ClassStatsType
 ClassType createClassType()
          Create an instance of ClassType
 Description createDescription()
          Create an instance of Description
 Description createDescription(String value)
          Create an instance of Description
 Details createDetails()
          Create an instance of Details
 Details createDetails(String value)
          Create an instance of Details
 Errors createErrors()
          Create an instance of Errors
 ErrorsType createErrorsType()
          Create an instance of ErrorsType
 ErrorType createErrorType()
          Create an instance of ErrorType
 Field createField()
          Create an instance of Field
 FieldType createFieldType()
          Create an instance of FieldType
 FindBugsProfile createFindBugsProfile()
          Create an instance of FindBugsProfile
 FindBugsProfileType createFindBugsProfileType()
          Create an instance of FindBugsProfileType
 FindBugsSummary createFindBugsSummary()
          Create an instance of FindBugsSummary
 FindBugsSummaryType createFindBugsSummaryType()
          Create an instance of FindBugsSummaryType
 FindBugsSummaryType.FileStatsType createFindBugsSummaryTypeFileStatsType()
          Create an instance of FindBugsSummaryTypeFileStatsType
 History createHistory()
          Create an instance of History
 HistoryType createHistoryType()
          Create an instance of HistoryType
 Int createInt()
          Create an instance of Int
 IntType createIntType()
          Create an instance of IntType
 Jar createJar()
          Create an instance of Jar
 JarType createJarType()
          Create an instance of JarType
 LocalVariable createLocalVariable()
          Create an instance of LocalVariable
 LocalVariableType createLocalVariableType()
          Create an instance of LocalVariableType
 LongMessage createLongMessage()
          Create an instance of LongMessage
 LongMessage createLongMessage(String value)
          Create an instance of LongMessage
 Message createMessage()
          Create an instance of Message
 Message createMessage(String value)
          Create an instance of Message
 Method createMethod()
          Create an instance of Method
 MethodType createMethodType()
          Create an instance of MethodType
 PackageStats createPackageStats()
          Create an instance of PackageStats
 PackageStatsType createPackageStatsType()
          Create an instance of PackageStatsType
 Project createProject()
          Create an instance of Project
 ProjectType createProjectType()
          Create an instance of ProjectType
 Property createProperty()
          Create an instance of Property
 PropertyType createPropertyType()
          Create an instance of PropertyType
 ShortDescription createShortDescription()
          Create an instance of ShortDescription
 ShortDescription createShortDescription(String value)
          Create an instance of ShortDescription
 ShortMessage createShortMessage()
          Create an instance of ShortMessage
 ShortMessage createShortMessage(String value)
          Create an instance of ShortMessage
 SourceLine createSourceLine()
          Create an instance of SourceLine
 SourceLineType createSourceLineType()
          Create an instance of SourceLineType
 String createString()
          Create an instance of String
 StringType createStringType()
          Create an instance of StringType
 SummaryHTML createSummaryHTML()
          Create an instance of SummaryHTML
 SummaryHTMLType createSummaryHTMLType()
          Create an instance of SummaryHTMLType
 Type createType()
          Create an instance of Type
 TypeType createTypeType()
          Create an instance of TypeType
 Object getProperty(String name)
          Get the specified property.
 Object newInstance(Class javaContentInterface)
          Create an instance of the specified Java content interface.
 void setProperty(String name, Object value)
          Set the specified property.
 
Methods inherited from class org.jcoderz.phoenix.report.jaxb.impl.runtime.DefaultJAXBContextImpl
createMarshaller, createUnmarshaller, createValidator, getGrammar, getGrammarInfo
 
Methods inherited from class javax.xml.bind.JAXBContext
createBinder, createBinder, createJAXBIntrospector, generateSchema, newInstance, newInstance, newInstance, newInstance, newInstance
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

grammarInfo

public static final GrammarInfo grammarInfo

version

public static final Class version
Constructor Detail

ObjectFactory

public ObjectFactory()
Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.jcoderz.phoenix.findbugs.jaxb

Method Detail

newInstance

public Object newInstance(Class javaContentInterface)
                   throws JAXBException
Create an instance of the specified Java content interface.

Overrides:
newInstance in class DefaultJAXBContextImpl
Parameters:
javaContentInterface - the Class object of the javacontent interface to instantiate
Returns:
a new instance
Throws:
JAXBException - if an error occurs

getProperty

public Object getProperty(String name)
                   throws PropertyException
Get the specified property. This method can only be used to get provider specific properties. Attempting to get an undefined property will result in a PropertyException being thrown.

Overrides:
getProperty in class DefaultJAXBContextImpl
Parameters:
name - the name of the property to retrieve
Returns:
the value of the requested property
Throws:
PropertyException - when there is an error retrieving the given property or value

setProperty

public void setProperty(String name,
                        Object value)
                 throws PropertyException
Set the specified property. This method can only be used to set provider specific properties. Attempting to set an undefined property will result in a PropertyException being thrown.

Overrides:
setProperty in class DefaultJAXBContextImpl
Parameters:
name - the name of the property to retrieve
value - the value of the property to be set
Throws:
PropertyException - when there is an error processing the given property or value

createPropertyType

public PropertyType createPropertyType()
                                throws JAXBException
Create an instance of PropertyType

Throws:
JAXBException - if an error occurs

createSummaryHTMLType

public SummaryHTMLType createSummaryHTMLType()
                                      throws JAXBException
Create an instance of SummaryHTMLType

Throws:
JAXBException - if an error occurs

createTypeType

public TypeType createTypeType()
                        throws JAXBException
Create an instance of TypeType

Throws:
JAXBException - if an error occurs

createClassFeatures

public ClassFeatures createClassFeatures()
                                  throws JAXBException
Create an instance of ClassFeatures

Throws:
JAXBException - if an error occurs

createString

public String createString()
                    throws JAXBException
Create an instance of String

Throws:
JAXBException - if an error occurs

createMethodType

public MethodType createMethodType()
                            throws JAXBException
Create an instance of MethodType

Throws:
JAXBException - if an error occurs

createShortDescription

public ShortDescription createShortDescription()
                                        throws JAXBException
Create an instance of ShortDescription

Throws:
JAXBException - if an error occurs

createShortDescription

public ShortDescription createShortDescription(String value)
                                        throws JAXBException
Create an instance of ShortDescription

Throws:
JAXBException - if an error occurs

createFindBugsProfileType

public FindBugsProfileType createFindBugsProfileType()
                                              throws JAXBException
Create an instance of FindBugsProfileType

Throws:
JAXBException - if an error occurs

createDescription

public Description createDescription()
                              throws JAXBException
Create an instance of Description

Throws:
JAXBException - if an error occurs

createDescription

public Description createDescription(String value)
                              throws JAXBException
Create an instance of Description

Throws:
JAXBException - if an error occurs

createField

public Field createField()
                  throws JAXBException
Create an instance of Field

Throws:
JAXBException - if an error occurs

createJar

public Jar createJar()
              throws JAXBException
Create an instance of Jar

Throws:
JAXBException - if an error occurs

createFindBugsSummaryTypeFileStatsType

public FindBugsSummaryType.FileStatsType createFindBugsSummaryTypeFileStatsType()
                                                                         throws JAXBException
Create an instance of FindBugsSummaryTypeFileStatsType

Throws:
JAXBException - if an error occurs

createClassProfileType

public ClassProfileType createClassProfileType()
                                        throws JAXBException
Create an instance of ClassProfileType

Throws:
JAXBException - if an error occurs

createHistory

public History createHistory()
                      throws JAXBException
Create an instance of History

Throws:
JAXBException - if an error occurs

createFindBugsSummaryType

public FindBugsSummaryType createFindBugsSummaryType()
                                              throws JAXBException
Create an instance of FindBugsSummaryType

Throws:
JAXBException - if an error occurs

createBugInstanceType

public BugInstanceType createBugInstanceType()
                                      throws JAXBException
Create an instance of BugInstanceType

Throws:
JAXBException - if an error occurs

createPackageStatsType

public PackageStatsType createPackageStatsType()
                                        throws JAXBException
Create an instance of PackageStatsType

Throws:
JAXBException - if an error occurs

createFieldType

public FieldType createFieldType()
                          throws JAXBException
Create an instance of FieldType

Throws:
JAXBException - if an error occurs

createMethod

public Method createMethod()
                    throws JAXBException
Create an instance of Method

Throws:
JAXBException - if an error occurs

createClassType

public ClassType createClassType()
                          throws JAXBException
Create an instance of ClassType

Throws:
JAXBException - if an error occurs

createClassProfile

public ClassProfile createClassProfile()
                                throws JAXBException
Create an instance of ClassProfile

Throws:
JAXBException - if an error occurs

createShortMessage

public ShortMessage createShortMessage()
                                throws JAXBException
Create an instance of ShortMessage

Throws:
JAXBException - if an error occurs

createShortMessage

public ShortMessage createShortMessage(String value)
                                throws JAXBException
Create an instance of ShortMessage

Throws:
JAXBException - if an error occurs

createAuxClasspathEntry

public AuxClasspathEntry createAuxClasspathEntry()
                                          throws JAXBException
Create an instance of AuxClasspathEntry

Throws:
JAXBException - if an error occurs

createErrorsType

public ErrorsType createErrorsType()
                            throws JAXBException
Create an instance of ErrorsType

Throws:
JAXBException - if an error occurs

createClassFeaturesType

public ClassFeaturesType createClassFeaturesType()
                                          throws JAXBException
Create an instance of ClassFeaturesType

Throws:
JAXBException - if an error occurs

createLocalVariable

public LocalVariable createLocalVariable()
                                  throws JAXBException
Create an instance of LocalVariable

Throws:
JAXBException - if an error occurs

createProject

public Project createProject()
                      throws JAXBException
Create an instance of Project

Throws:
JAXBException - if an error occurs

createAuxClasspathEntryType

public AuxClasspathEntryType createAuxClasspathEntryType()
                                                  throws JAXBException
Create an instance of AuxClasspathEntryType

Throws:
JAXBException - if an error occurs

createBugPattern

public BugPattern createBugPattern()
                            throws JAXBException
Create an instance of BugPattern

Throws:
JAXBException - if an error occurs

createSourceLine

public SourceLine createSourceLine()
                            throws JAXBException
Create an instance of SourceLine

Throws:
JAXBException - if an error occurs

createBugPatternType

public BugPatternType createBugPatternType()
                                    throws JAXBException
Create an instance of BugPatternType

Throws:
JAXBException - if an error occurs

createClassStats

public ClassStats createClassStats()
                            throws JAXBException
Create an instance of ClassStats

Throws:
JAXBException - if an error occurs

createBugCollectionType

public BugCollectionType createBugCollectionType()
                                          throws JAXBException
Create an instance of BugCollectionType

Throws:
JAXBException - if an error occurs

createInt

public Int createInt()
              throws JAXBException
Create an instance of Int

Throws:
JAXBException - if an error occurs

createBugCodeType

public BugCodeType createBugCodeType()
                              throws JAXBException
Create an instance of BugCodeType

Throws:
JAXBException - if an error occurs

createErrors

public Errors createErrors()
                    throws JAXBException
Create an instance of Errors

Throws:
JAXBException - if an error occurs

createBugCategory

public BugCategory createBugCategory()
                              throws JAXBException
Create an instance of BugCategory

Throws:
JAXBException - if an error occurs

createBugCollection

public BugCollection createBugCollection()
                                  throws JAXBException
Create an instance of BugCollection

Throws:
JAXBException - if an error occurs

createHistoryType

public HistoryType createHistoryType()
                              throws JAXBException
Create an instance of HistoryType

Throws:
JAXBException - if an error occurs

createClass

public Class createClass()
                  throws JAXBException
Create an instance of Class

Throws:
JAXBException - if an error occurs

createSummaryHTML

public SummaryHTML createSummaryHTML()
                              throws JAXBException
Create an instance of SummaryHTML

Throws:
JAXBException - if an error occurs

createMessage

public Message createMessage()
                      throws JAXBException
Create an instance of Message

Throws:
JAXBException - if an error occurs

createMessage

public Message createMessage(String value)
                      throws JAXBException
Create an instance of Message

Throws:
JAXBException - if an error occurs

createFindBugsSummary

public FindBugsSummary createFindBugsSummary()
                                      throws JAXBException
Create an instance of FindBugsSummary

Throws:
JAXBException - if an error occurs

createLongMessage

public LongMessage createLongMessage()
                              throws JAXBException
Create an instance of LongMessage

Throws:
JAXBException - if an error occurs

createLongMessage

public LongMessage createLongMessage(String value)
                              throws JAXBException
Create an instance of LongMessage

Throws:
JAXBException - if an error occurs

createIntType

public IntType createIntType()
                      throws JAXBException
Create an instance of IntType

Throws:
JAXBException - if an error occurs

createLocalVariableType

public LocalVariableType createLocalVariableType()
                                          throws JAXBException
Create an instance of LocalVariableType

Throws:
JAXBException - if an error occurs

createErrorType

public ErrorType createErrorType()
                          throws JAXBException
Create an instance of ErrorType

Throws:
JAXBException - if an error occurs

createBugInstance

public BugInstance createBugInstance()
                              throws JAXBException
Create an instance of BugInstance

Throws:
JAXBException - if an error occurs

createClassStatsType

public ClassStatsType createClassStatsType()
                                    throws JAXBException
Create an instance of ClassStatsType

Throws:
JAXBException - if an error occurs

createBugCode

public BugCode createBugCode()
                      throws JAXBException
Create an instance of BugCode

Throws:
JAXBException - if an error occurs

createSourceLineType

public SourceLineType createSourceLineType()
                                    throws JAXBException
Create an instance of SourceLineType

Throws:
JAXBException - if an error occurs

createProjectType

public ProjectType createProjectType()
                              throws JAXBException
Create an instance of ProjectType

Throws:
JAXBException - if an error occurs

createProperty

public Property createProperty()
                        throws JAXBException
Create an instance of Property

Throws:
JAXBException - if an error occurs

createBugCategoryType

public BugCategoryType createBugCategoryType()
                                      throws JAXBException
Create an instance of BugCategoryType

Throws:
JAXBException - if an error occurs

createStringType

public StringType createStringType()
                            throws JAXBException
Create an instance of StringType

Throws:
JAXBException - if an error occurs

createPackageStats

public PackageStats createPackageStats()
                                throws JAXBException
Create an instance of PackageStats

Throws:
JAXBException - if an error occurs

createJarType

public JarType createJarType()
                      throws JAXBException
Create an instance of JarType

Throws:
JAXBException - if an error occurs

createType

public Type createType()
                throws JAXBException
Create an instance of Type

Throws:
JAXBException - if an error occurs

createDetails

public Details createDetails()
                      throws JAXBException
Create an instance of Details

Throws:
JAXBException - if an error occurs

createDetails

public Details createDetails(String value)
                      throws JAXBException
Create an instance of Details

Throws:
JAXBException - if an error occurs

createFindBugsProfile

public FindBugsProfile createFindBugsProfile()
                                      throws JAXBException
Create an instance of FindBugsProfile

Throws:
JAXBException - if an error occurs


Copyright 2007 The jCoderZ Project.