@Documented @Retention(value=RUNTIME) @Target(value=TYPE) public @interface SonarLintSide
@SonarLintSide
public class Foo {
}
@SonarLintSide
public class Bar {
private final Foo foo;
public Bar(Foo f) {
this.foo = f;
}
}
| Modifier and Type | Fields and Description |
|---|---|
static String |
MULTIPLE_ANALYSES
The component will be instantiated once and reused by all analyses, as long as the SonarLint engine is not restarted.
|
static String |
SINGLE_ANALYSIS
The component will be instantiated for each analysis (could be single or multiple files analysis).
|
public static final String SINGLE_ANALYSIS
public static final String MULTIPLE_ANALYSES
Copyright © 2009–2018 SonarSource. All rights reserved.