All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.web.servlet.ModelAndView Maven / Gradle / Ivy

Go to download

This module create facades for all the APIs (classes, interfaces and annotations) that are use in the test code. The objective is to avoid the needed to download all the framework supported by the static analyzer.

The newest version!
package org.springframework.web.servlet;

import java.util.Map;

public class ModelAndView {

	public ModelAndView() {
	}

	public ModelAndView(String viewName) {
	}

	public ModelAndView(View view) {

	}

	public ModelAndView(String viewName, Map model) {
	}

	public ModelAndView(String viewName, String modelName, Object modelObject) {
	}

	public void setViewName(String viewName) {
	}


	public ModelAndView addObject(Object attributeValue) {
		return this;
	}

	public ModelAndView addObject(String attributeName, Object attributeValue) {
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy