| org.sakaiproject.portal.portlet.PortletRenderContext
All known Subclasses: org.sakaiproject.portal.portlet.velocity.VelocityPortletRenderContext,
PortletRenderContext | public interface PortletRenderContext (Code) | | This interface represent the Render Context, it allows the portal implementation to
put values into the render context. There is a utility dump method to dump the context.
Instances of this class should be created per request via an Implimention of the RenderContextEngine
author: ieb |
Method Summary | |
String | dump() Converr the render context to a string suitable for dumping to a log file or console. | void | put(String string, Object value) Set a value agaaisnt a Key, normally a value might be a String, Collection or a Map, but
depending on the render engine technology other objects may be acceptable. | boolean | uses(String includeOption) |
dump | String dump()(Code) | | Converr the render context to a string suitable for dumping to a log file or console.
|
put | void put(String string, Object value)(Code) | | Set a value agaaisnt a Key, normally a value might be a String, Collection or a Map, but
depending on the render engine technology other objects may be acceptable.
Parameters: string - Parameters: value - |
uses | boolean uses(String includeOption)(Code) | | Return true if the context needs this part of the portal
Parameters: includeOption - |
|
|