Package net.sf.basedb.util.extensions
Interface Renderer<A extends Action>
-
- All Known Subinterfaces:
WrappingRenderer<A>
- All Known Implementing Classes:
CompactButtonRenderer
,ExtensionSignalTransporter.SendSignalRenderer
,ListColumnExportRenderer
,OnSaveRenderer
,PrefixSuffixRenderer
,ResetMetadataRenderer
,StartServiceRenderer
,StopServiceRenderer
,TabControl
,ToolbarButtonRenderer
,ValidationRenderer
public interface Renderer<A extends Action>
A renderer is an object that knows how to render an action in the client interface. In the web client, this usually means outputting some HTML. In other types of clients, this may mean something completely different, such as creating a swing button, or menu item.- Version:
- 2.7
- Author:
- nicklas
- Last modified
- $Date: 2008-09-11 22:08:14 +0200 (to, 11 sep 2008) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
render(A action)
Render the action in the client application.
-
-
-
Method Detail
-
render
void render(A action)
Render the action in the client application.- Parameters:
action
- The action to render
-
-