| java.lang.Object org.springframework.webflow.execution.ViewSelection org.springframework.webflow.execution.support.ApplicationView
ApplicationView | final public class ApplicationView extends ViewSelection (Code) | | Concrete response type that requests the rendering of a local, internal
application view resource such as a JSP, Velocity, or FreeMarker template.
This is typically the most common type of view selection.
author: Keith Donald author: Erwin Vervaet |
ApplicationView | public ApplicationView(String viewName, Map model)(Code) | | Creates a new application view.
Parameters: viewName - the name (or resource identifier) of the view that shouldbe rendered Parameters: model - the map of application model data to make available to theview during rendering; entries consist of model names (Strings) to modelobjects (Objects), model entries may not be null, but the model Map maybe null if there is no model data |
getModel | public Map getModel()(Code) | | Return the view's application model that should be made available during
the rendering process. Never returns null. The returned map is unmodifiable.
|
getViewName | public String getViewName()(Code) | | Returns the name of the view to render.
|
hashCode | public int hashCode()(Code) | | |
|
|