org.jboss.seam.faces.context
Interface RenderContext


public interface RenderContext

A context that lives from Restore View to the next Render Response.

Author:
Method Summary
 Object get(String key)
          Get a key value pair from the RenderContext.
 Integer getId()
          Return the current ID of this request's RenderContext.
 boolean isEmpty()
          Returns true if the current RenderContext contains no data.
 void put(String key, Object value)
          Put a key value pair into the RenderContext.
 

Method Detail

isEmpty

boolean isEmpty()
Returns true if the current RenderContext contains no data.


getId

Integer getId()
Return the current ID of this request's RenderContext. If the ID has not yet been set as part of a redirect, the ID will be null.


get

Object get(String key)
Get a key value pair from the RenderContext.


put

void put(String key,
         Object value)
Put a key value pair into the RenderContext.



Copyright © 2011 Seam Framework. All Rights Reserved.