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 {
1818 }
1919}
2020
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+ */
2226class ModelAndView extends Class {
2327 ModelAndView ( ) {
2428 hasQualifiedName ( [ "org.springframework.web.servlet" , "org.springframework.web.portlet" ] ,
2529 "ModelAndView" )
2630 }
2731}
2832
29- /** Models a call to the Spring `ModelAndView` class's ` setViewName` method. */
33+ /** A call to the Spring `ModelAndView. setViewName` method. */
3034class SpringModelAndViewSetViewNameCall extends MethodAccess {
3135 SpringModelAndViewSetViewNameCall ( ) {
3236 getMethod ( ) .getDeclaringType ( ) instanceof ModelAndView and
You can’t perform that action at this time.
0 commit comments