Uses of Class
org.sonar.java.cfg.CFG
-
Packages that use CFG Package Description org.sonar.java.cfg org.sonar.java.model.declaration org.sonar.java.se org.sonar.java.se.checks org.sonar.java.se.checks.debug -
-
Uses of CFG in org.sonar.java.cfg
Methods in org.sonar.java.cfg that return CFG Modifier and Type Method Description static CFG
CFG. build(MethodTree tree)
static CFG
CFG. buildCFG(List<? extends Tree> trees)
static CFG
CFG. buildCFG(List<? extends Tree> trees, boolean ignoreBreak)
Methods in org.sonar.java.cfg with parameters of type CFG Modifier and Type Method Description static LiveVariables
LiveVariables. analyze(CFG cfg)
Returns LiveVariables object with information concerning local variables and parametersstatic LiveVariables
LiveVariables. analyzeWithFields(CFG cfg)
Returns LiveVariables object with information concerning local variables, parameters and fieldsstatic Map<Tree,CFGLoop>
CFGLoop. getCFGLoops(CFG cfg)
-
Uses of CFG in org.sonar.java.model.declaration
Methods in org.sonar.java.model.declaration that return CFG Modifier and Type Method Description CFG
MethodTreeImpl. cfg()
-
Uses of CFG in org.sonar.java.se
Methods in org.sonar.java.se with parameters of type CFG Modifier and Type Method Description void
CheckerDispatcher. init(MethodTree methodTree, CFG cfg)
-
Uses of CFG in org.sonar.java.se.checks
Methods in org.sonar.java.se.checks with parameters of type CFG Modifier and Type Method Description void
InvariantReturnCheck. init(MethodTree methodTree, CFG cfg)
void
MapComputeIfAbsentOrPresentCheck. init(MethodTree methodTree, CFG cfg)
void
NonNullSetToNullCheck. init(MethodTree tree, CFG cfg)
void
NoWayOutLoopCheck. init(MethodTree tree, CFG cfg)
void
NullDereferenceCheck. init(MethodTree methodTree, CFG cfg)
void
RedundantAssignmentsCheck. init(MethodTree methodTree, CFG cfg)
void
SECheck. init(MethodTree methodTree, CFG cfg)
void
UnclosedResourcesCheck. init(MethodTree methodTree, CFG cfg)
-
Uses of CFG in org.sonar.java.se.checks.debug
Methods in org.sonar.java.se.checks.debug with parameters of type CFG Modifier and Type Method Description void
DebugInterruptedExecutionCheck. init(MethodTree methodTree, CFG cfg)
void
DebugMethodYieldsCheck. init(MethodTree methodTree, CFG cfg)
void
DebugMethodYieldsOnInvocationsCheck. init(MethodTree methodTree, CFG cfg)
-