Package | Description |
---|---|
org.jgrapes.webconsole.base |
Provides the components for building web consoles based on the
core, io and http packages.
|
org.jgrapes.webconsole.base.events |
The events used by the web console related components.
|
org.jgrapes.webconsole.base.freemarker |
Classes for implementing a freemarker based web console component.
|
Constructor and Description |
---|
RenderConletFromReader(RenderConletRequestBase<?> request,
String conletType,
String conletId,
Reader contentReader)
Creates a new event.
|
Modifier and Type | Class and Description |
---|---|
class |
AddConletRequest
Sent to the console (server) if a new web console component instance of a given
type should be added to the web console page.
|
class |
RenderConletRequest
Sent to the web console (server) if an existing web console component
instance should be updated.
|
Modifier and Type | Method and Description |
---|---|
protected Map<String,Object> |
FreeMarkerConlet.fmConletModel(RenderConletRequestBase<?> event,
org.jgrapes.io.IOSubchannel channel,
AbstractConlet.ConletBaseModel conletModel)
Build a freemarker model for the current request.
|
protected Map<String,Object> |
FreeMarkerConlet.fmModel(RenderConletRequestBase<?> event,
ConsoleSession channel,
AbstractConlet.ConletBaseModel conletModel)
Build a freemarker model that combines
FreeMarkerConlet.fmTypeModel(org.jgrapes.webconsole.base.RenderSupport) ,
FreeMarkerConlet.fmSessionModel(org.jgrapes.http.Session) and FreeMarkerConlet.fmConletModel(org.jgrapes.webconsole.base.events.RenderConletRequestBase<?>, org.jgrapes.io.IOSubchannel, org.jgrapes.webconsole.base.AbstractConlet.ConletBaseModel) . |
Constructor and Description |
---|
RenderConletFromTemplate(RenderConletRequestBase<?> request,
String conletType,
String conletId,
freemarker.template.Template template,
Object dataModel)
Instantiates a new event.
|