congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
ViewHandler.renderView
Code IndexAdd Tabnine to your IDE (free)

How to use
renderView
method
in
javax.faces.application.ViewHandler

Best Java code snippets using javax.faces.application.ViewHandler.renderView (Showing top 20 results out of 360)

origin: ocpsoft/prettyfaces

@Override
public void renderView(final FacesContext facesContext, final UIViewRoot arg1) throws IOException, FacesException
{
 parent.renderView(facesContext, arg1);
}
origin: org.jboss.seam/jboss-seam

@Override
public void renderView(FacesContext ctx, UIViewRoot viewRoot)
   throws IOException, FacesException
{
 viewHandler.renderView(ctx, viewRoot);
}
origin: org.apache.shale/shale-view

/** {@inheritDoc} */
public void renderView(FacesContext context, UIViewRoot view)
 throws IOException, FacesException {
  original.renderView(context, view);
}
origin: com.ocpsoft/prettyfaces-jsf2

@Override
public void renderView(final FacesContext facesContext, final UIViewRoot viewRoot) throws IOException,
    FacesException
{
 parent.renderView(facesContext, viewRoot);
}
origin: org.ocpsoft.rewrite/rewrite-integration-faces

@Override
public void renderView(final FacesContext facesContext, final UIViewRoot viewRoot) throws IOException,
    FacesException
{
 parent.renderView(facesContext, viewRoot);
}
origin: org.apache.myfaces.orchestra/myfaces-orchestra-core

public void renderView(FacesContext context, UIViewRoot viewToRender)
  throws IOException, FacesException
{
  original.renderView(context, viewToRender);
}
origin: ocpsoft/rewrite

@Override
public void renderView(final FacesContext facesContext, final UIViewRoot viewRoot) throws IOException,
    FacesException
{
 parent.renderView(facesContext, viewRoot);
}
origin: ocpsoft/prettyfaces

@Override
public void renderView(final FacesContext facesContext, final UIViewRoot arg1) throws IOException, FacesException
{
 parent.renderView(facesContext, arg1);
}
origin: javax/javaee-web-api

/**
 * <p>The default behavior of this method is to
 * call {@link ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)
 * @since 1.2
 */
@Override
public void renderView(FacesContext context, UIViewRoot viewToRender) throws IOException, FacesException {
  getWrapped().renderView(context, viewToRender);
}
origin: com.sun.faces/jsf-api

/**
 * <p>The default behavior of this method is to
 * call {@link ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)
 * @since 1.2
 */
@Override
public void renderView(FacesContext context, UIViewRoot viewToRender)
throws IOException, FacesException {
  getWrapped().renderView(context, viewToRender);
}
origin: org.apache.myfaces.core/myfaces-api

@Override
public void renderView(FacesContext context, UIViewRoot viewToRender) throws IOException, FacesException
{
  getWrapped().renderView(context, viewToRender);
}
origin: javax.faces/javax.faces-api

/**
 * <p>The default behavior of this method is to
 * call {@link ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)
 * @since 1.2
 */
@Override
public void renderView(FacesContext context, UIViewRoot viewToRender) throws IOException, FacesException {
  getWrapped().renderView(context, viewToRender);
}
origin: javax.faces/jsf-impl

public void renderView(FacesContext context, UIViewRoot viewToRender)
throws IOException, FacesException {
  getGroovyDelegate().renderView(context, viewToRender);
}
origin: javax.faces/com.springsource.javax.faces

/**
 * <p>The default behavior of this method is to
 * call {@link ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)
 * @since 1.2
 */
public void renderView(FacesContext context, UIViewRoot viewToRender)
throws IOException, FacesException {
  getWrapped().renderView(context, viewToRender);
}
origin: org.apache.myfaces.tobago/tobago-deprecation

public void renderView(final FacesContext facesContext, final UIViewRoot viewRoot)
  throws IOException, FacesException {
 // standard
 base.renderView(facesContext, viewRoot);
 if (LOG.isDebugEnabled()) {
  LOG.debug("VIEW");
  LOG.debug(DebugUtils.toString(facesContext.getViewRoot(), 0));
 }
}
origin: org.richfaces/com.springsource.org.richfaces

public void renderView(FacesContext context, UIViewRoot root) throws IOException, FacesException {
  fillChain(context);
  _handler.renderView(context, root);
}
origin: org.jboss.spec.javax.faces/jboss-jsf-api_2.0_spec

/**
 * <p>The default behavior of this method is to
 * call {@link ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)
 * @since 1.2
 */
public void renderView(FacesContext context, UIViewRoot viewToRender)
throws IOException, FacesException {
  getWrapped().renderView(context, viewToRender);
}
origin: jboss/jboss-javaee-specs

/**
 * <p>The default behavior of this method is to
 * call {@link ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)}
 * on the wrapped {@link ViewHandler} object.</p>
 *
 * @see ViewHandler#renderView(javax.faces.context.FacesContext, javax.faces.component.UIViewRoot)
 * @since 1.2
 */
@Override
public void renderView(FacesContext context, UIViewRoot viewToRender) throws IOException, FacesException {
  getWrapped().renderView(context, viewToRender);
}
origin: com.sun.faces/jsf-impl

public void renderView(FacesContext context, UIViewRoot viewToRender)
throws IOException, FacesException {
  getGroovyDelegate().renderView(context, viewToRender);
}
origin: org.apache.myfaces/com.springsource.org.apache.myfaces

public boolean execute(FacesContext facesContext) {
  Application application = facesContext.getApplication();
  ViewHandler viewHandler = application.getViewHandler();
  try {
    viewHandler.renderView(facesContext, facesContext.getViewRoot());
  } catch (IOException e) {
    throw new FacesException(e.getMessage(), e);
  }
  return false;
}
javax.faces.applicationViewHandlerrenderView

Javadoc

Perform whatever actions are required to render the response view to the response object associated with the current FacesContext.

Otherwise, the default implementation must obtain a reference to the ViewDeclarationLanguage for the viewId of the argument viewToRender and call its ViewDeclarationLanguage#renderView method, returning the result and not swallowing any exceptions thrown by that method.

Popular methods of ViewHandler

  • getActionURL
    If the value returned from this method is used as the file argument to the four-argument constructor
  • createView
    Create and return a new UIViewRoot instance initialized with information from the argument FacesCont
  • getResourceURL
    If the value returned from this method is used as the file argument to the four-argument constructor
  • restoreView
    Perform whatever actions are required to restore the view associated with the specified FacesContext
  • calculateRenderKitId
    Return an appropriate renderKitId for this and subsequent requests from the current client. It is an
  • calculateLocale
    Returns an appropriate Locale to use for this and subsequent requests for the current client.
  • writeState
    Take any appropriate action to either immediately write out the current state information (by callin
  • initView
    Initialize the view for the request processing lifecycle. This method must be called at the beginni
  • getBookmarkableURL
    Return a JSF action URL derived from the viewId argument that is suitable to be used as the target
  • getViewDeclarationLanguage
    Return the ViewDeclarationLanguage instance used for this ViewHandler instance. The default impleme
  • getRedirectURL
    Return a JSF action URL derived from the viewId argument that is suitable to be used by the Navigat
  • calculateCharacterEncoding
    Returns the correct character encoding to be used for this request. The following algorithm is empl
  • getRedirectURL,
  • calculateCharacterEncoding,
  • deriveViewId,
  • deriveLogicalViewId,
  • getProtectedViewsUnmodifiable,
  • addProtectedView,
  • getViews,
  • getWebsocketURL,
  • removeProtectedView

Popular in Java

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • getSharedPreferences (Context)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Collectors (java.util.stream)
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now