| com.atlassian.plugin.web.model.WebPanel |
Known Indirect Subclasses
| AbstractWebPanel |
|
| EmbeddedTemplateWebPanel |
This class is used for web panel declaration that do not have a custom
class attribute in their descriptor, nor a location
attribute in their resource child element. |
| ResourceTemplateWebPanel |
This class is used for web panel declaration that do not have a custom
class attribute in their descriptor, but do have a
location attribute in their resource child element, which
points to a template file on the (plugin's) classpath. |
|
Class Overview
The module that is responsive for providing the raw content for a Web Panel.
Whatever is returned by getHtml(java.util.Map) is inserted into the
host application's page, so it has to be valid HTML.
Summary
| Public Methods |
|
abstract
String
|
getHtml(Map<String, Object> context)
Returns the HTML that will be placed in the host application's page.
|
Public Methods
public
abstract
String
getHtml
(Map<String, Object> context)
Returns the HTML that will be placed in the host application's page.
Parameters
| context
| the contextual information that can be used during
rendering. Context elements are not standardized and are
application-specific, so refer to your application's documentation to
learn what is available. |
Returns
- the HTML that will be placed in the host application's page.