|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use FileAnnotation | |
|---|---|
| hudson.plugins.findbugs | |
| hudson.plugins.findbugs.parser | |
| hudson.plugins.findbugs.util | |
| hudson.plugins.findbugs.util.model | |
| Uses of FileAnnotation in hudson.plugins.findbugs |
|---|
| Methods in hudson.plugins.findbugs that return FileAnnotation | |
|---|---|
FileAnnotation |
FindBugsResult.getAnnotation(long key)
Returns the annotation with the specified key. |
FileAnnotation |
FindBugsResult.getAnnotation(java.lang.String key)
Returns the annotation with the specified key. |
| Methods in hudson.plugins.findbugs that return types with arguments of type FileAnnotation | |
|---|---|
java.util.Collection<FileAnnotation> |
FindBugsResult.getAnnotations()
Returns the annotations for this object. |
java.util.Collection<FileAnnotation> |
FindBugsResult.getAnnotations(Priority priority)
Returns the annotations of the specified priority for this object. |
java.util.Collection<FileAnnotation> |
FindBugsResult.getAnnotations(java.lang.String priority)
Returns the annotations of the specified priority for this object. |
java.util.Set<FileAnnotation> |
FindBugsResult.getFixedWarnings()
Returns the fixed warnings of this build. |
java.util.Set<FileAnnotation> |
FindBugsResult.getNewWarnings()
Returns the new warnings of this build. |
| Uses of FileAnnotation in hudson.plugins.findbugs.parser |
|---|
| Classes in hudson.plugins.findbugs.parser that implement FileAnnotation | |
|---|---|
class |
Bug
A serializable Java Bean class representing a warning. |
| Uses of FileAnnotation in hudson.plugins.findbugs.util |
|---|
| Methods in hudson.plugins.findbugs.util that return types with arguments of type FileAnnotation | |
|---|---|
static java.util.Set<FileAnnotation> |
AnnotationDifferencer.getFixedWarnings(java.util.Collection<FileAnnotation> actual,
java.util.Collection<FileAnnotation> previous)
Returns the fixed annotations, i.e., the annotations that are in the previous build but not in the actual. |
static java.util.Set<FileAnnotation> |
AnnotationDifferencer.getNewWarnings(java.util.Collection<FileAnnotation> actual,
java.util.Collection<FileAnnotation> previous)
Returns the new annotations, i.e., the annotations that are in the actual build but not in the previous. |
| Method parameters in hudson.plugins.findbugs.util with type arguments of type FileAnnotation | |
|---|---|
static java.util.Set<FileAnnotation> |
AnnotationDifferencer.getFixedWarnings(java.util.Collection<FileAnnotation> actual,
java.util.Collection<FileAnnotation> previous)
Returns the fixed annotations, i.e., the annotations that are in the previous build but not in the actual. |
static java.util.Set<FileAnnotation> |
AnnotationDifferencer.getFixedWarnings(java.util.Collection<FileAnnotation> actual,
java.util.Collection<FileAnnotation> previous)
Returns the fixed annotations, i.e., the annotations that are in the previous build but not in the actual. |
static java.util.Set<FileAnnotation> |
AnnotationDifferencer.getNewWarnings(java.util.Collection<FileAnnotation> actual,
java.util.Collection<FileAnnotation> previous)
Returns the new annotations, i.e., the annotations that are in the actual build but not in the previous. |
static java.util.Set<FileAnnotation> |
AnnotationDifferencer.getNewWarnings(java.util.Collection<FileAnnotation> actual,
java.util.Collection<FileAnnotation> previous)
Returns the new annotations, i.e., the annotations that are in the actual build but not in the previous. |
| Constructors in hudson.plugins.findbugs.util with parameters of type FileAnnotation | |
|---|---|
SourceDetail(hudson.model.AbstractBuild<?,?> owner,
FileAnnotation annotation)
Creates a new instance of this source code object. |
|
| Constructor parameters in hudson.plugins.findbugs.util with type arguments of type FileAnnotation | |
|---|---|
AbstractAnnotationsDetail(hudson.model.AbstractBuild<?,?> owner,
java.util.Collection<FileAnnotation> annotations,
java.lang.String name)
Creates a new instance of AbstractWarningsDetail. |
|
FixedWarningsDetail(hudson.model.AbstractBuild<?,?> owner,
java.util.Collection<FileAnnotation> fixedWarnings,
java.lang.String header)
Creates a new instance of FixedWarningsDetail. |
|
NewWarningsDetail(hudson.model.AbstractBuild<?,?> owner,
java.util.Collection<FileAnnotation> newWarnings,
java.lang.String header)
Creates a new instance of NewWarningsDetail. |
|
PrioritiesDetail(hudson.model.AbstractBuild<?,?> owner,
java.util.Collection<FileAnnotation> annotations,
Priority priority,
java.lang.String header)
Creates a new instance of ModuleDetail. |
|
| Uses of FileAnnotation in hudson.plugins.findbugs.util.model |
|---|
| Classes in hudson.plugins.findbugs.util.model that implement FileAnnotation | |
|---|---|
class |
AbstractAnnotation
A base class for annotations. |
| Methods in hudson.plugins.findbugs.util.model that return FileAnnotation | |
|---|---|
FileAnnotation |
AnnotationProvider.getAnnotation(long key)
Returns the annotation with the specified key. |
FileAnnotation |
AnnotationContainer.getAnnotation(long key)
Returns the annotation with the specified key. |
FileAnnotation |
AnnotationProvider.getAnnotation(java.lang.String key)
Returns the annotation with the specified key. |
FileAnnotation |
AnnotationContainer.getAnnotation(java.lang.String key)
Returns the annotation with the specified key. |
| Methods in hudson.plugins.findbugs.util.model that return types with arguments of type FileAnnotation | |
|---|---|
java.util.Collection<FileAnnotation> |
AnnotationProvider.getAnnotations()
Returns the annotations for this object. |
java.util.Collection<FileAnnotation> |
AnnotationContainer.getAnnotations()
Returns the annotations for this object. |
java.util.Collection<FileAnnotation> |
AnnotationProvider.getAnnotations(Priority priority)
Returns the annotations of the specified priority for this object. |
java.util.Collection<FileAnnotation> |
AnnotationContainer.getAnnotations(Priority priority)
Returns the annotations of the specified priority for this object. |
java.util.Collection<FileAnnotation> |
AnnotationProvider.getAnnotations(java.lang.String priority)
Returns the annotations of the specified priority for this object. |
java.util.Collection<FileAnnotation> |
AnnotationContainer.getAnnotations(java.lang.String priority)
Returns the annotations of the specified priority for this object. |
| Methods in hudson.plugins.findbugs.util.model with parameters of type FileAnnotation | |
|---|---|
void |
AnnotationContainer.addAnnotation(FileAnnotation annotation)
Adds the specified annotation to this container. |
void |
AnnotationContainer.addAnnotations(FileAnnotation[] newAnnotations)
Adds the specified annotations to this container. |
protected void |
AnnotationContainer.addFile(FileAnnotation annotation)
Adds a new file to this container that will contain the specified annotation. |
protected void |
MavenModule.annotationAdded(FileAnnotation annotation)
Creates the mapping of packages. |
protected void |
JavaProject.annotationAdded(FileAnnotation annotation)
Creates the mapping of modules. |
protected void |
AnnotationContainer.annotationAdded(FileAnnotation annotation)
Called if the specified annotation has been added to this container. |
| Method parameters in hudson.plugins.findbugs.util.model with type arguments of type FileAnnotation | |
|---|---|
void |
AnnotationContainer.addAnnotations(java.util.Collection<? extends FileAnnotation> newAnnotations)
Adds the specified annotations to this container. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||