Class Overview
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.
Summary
| Public Methods |
|
String
|
getHtml(Map<String, Object> context)
|
|
void
|
setResourceFilename(String resourceFilename)
Specifies the name of the template file that is to be rendered.
|
|
[Expand]
Inherited Methods |
From class
com.atlassian.plugin.web.model.AbstractWebPanel
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
com.atlassian.plugin.web.model.WebPanel
|
abstract
String
|
getHtml(Map<String, Object> context)
Returns the HTML that will be placed in the host application's page.
|
|
Public Constructors
Public Methods
public
String
getHtml
(Map<String, Object> context)
public
void
setResourceFilename
(String resourceFilename)
Specifies the name of the template file that is to be rendered.
This file will be loaded from the (plugin's) classpath.
Parameters
| resourceFilename
| the name of the template file that is to be rendered.
May not be null.
|