File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
java/ql/src/semmle/code/java/frameworks/spring Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,19 @@ class SpringNativeWebRequest extends Class {
18
18
}
19
19
}
20
20
21
- /** Models Spring `servlet` as well as `portlet` package's `ModelAndView` class. */
21
+ /**
22
+ * A Spring `ModelAndView` class. This is either
23
+ * `org.springframework.web.servlet.ModelAndView` or
24
+ * `org.springframework.web.portlet.ModelAndView`.
25
+ */
22
26
class ModelAndView extends Class {
23
27
ModelAndView ( ) {
24
28
hasQualifiedName ( [ "org.springframework.web.servlet" , "org.springframework.web.portlet" ] ,
25
29
"ModelAndView" )
26
30
}
27
31
}
28
32
29
- /** Models a call to the Spring `ModelAndView` class's ` setViewName` method. */
33
+ /** A call to the Spring `ModelAndView. setViewName` method. */
30
34
class SpringModelAndViewSetViewNameCall extends MethodAccess {
31
35
SpringModelAndViewSetViewNameCall ( ) {
32
36
getMethod ( ) .getDeclaringType ( ) instanceof ModelAndView and
You can’t perform that action at this time.
0 commit comments