org.rcfaces.core.component.capability
Interface IAsyncRenderModeCapability
- All Known Implementing Classes:
- BoxComponent, CardBoxComponent, ExpandBarComponent, TabbedPaneComponent
public interface IAsyncRenderModeCapability
A int value that indicates the rendering mode for asynchronous capable
component.
If value is "0:none", the rendering is synchronous (made with the englobing
page rendering).
If value is "1:buffer", the rendering is calculated with the page and may
contains HTML elements, it is sent to the client only when needed
(asynchrponously).
If value is "2:tree", the rendering is calculated only when needed (the HTML
elements are ignored)
- Version:
- $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
- Author:
- Olivier Oeuillot (latest modification by $Author: jbmeslin $)
|
Method Summary |
int |
getAsyncRenderMode()
Returns a int value that indicates the rendering mode for asynchronous
capable component. |
void |
setAsyncRenderMode(int renderMode)
Sets a int value that indicates the rendering mode for asynchronous
capable component. |
NONE_ASYNC_RENDER_MODE
static final int NONE_ASYNC_RENDER_MODE
- See Also:
- Constant Field Values
BUFFER_ASYNC_RENDER_MODE
static final int BUFFER_ASYNC_RENDER_MODE
- See Also:
- Constant Field Values
TREE_ASYNC_RENDER_MODE
static final int TREE_ASYNC_RENDER_MODE
- See Also:
- Constant Field Values
DEFAULT_ASYNC_RENDER_MODE
static final int DEFAULT_ASYNC_RENDER_MODE
- See Also:
- Constant Field Values
getAsyncRenderMode
int getAsyncRenderMode()
- Returns a int value that indicates the rendering mode for asynchronous
capable component.
- Returns:
- 0:none|1:buffer|2:tree
setAsyncRenderMode
void setAsyncRenderMode(int renderMode)
- Sets a int value that indicates the rendering mode for asynchronous
capable component.
- Parameters:
renderMode - 0:none|1:buffer|2:tree
Copyright © 2006-2011 Vedana. All Rights Reserved.