public static interface IPluginUI.IDescribeContext
Modifier and Type | Method and Description |
---|---|
boolean |
forRegistration()
Returns a boolean value indicating whether the HTML GUI being generated is intended for the
registration of the plug-in (true) or for the configuration of a new instance (false).
|
java.lang.String |
generateUrl(java.lang.String pageId,
java.lang.String[] names,
java.lang.Object[] values)
Generates a URL that may be used by the plug-in to specify a URL referring to (a particular page
within) the plug-in's UI.
|
ISettings |
getSettings()
Returns the current settings of the plug-in.
|
java.io.Writer |
getWriter()
Returns the
writer object to be used for rendering a summary of the plug-in. |
ISettings getSettings()
ISettings
instance containing the plug-in's current settings.
boolean forRegistration()
java.lang.String generateUrl(java.lang.String pageId, java.lang.String[] names, java.lang.Object[] values)
IPluginUI.IGeneratePageContext.getStringParameter(String)
.pageId
- The pageId of the plug-in page to be displayed or null for the first pagenames
- Parameter names that should be included in the URL being generated; must match the
number of values provided in the values parametervalues
- Parameter values that should be included in the URL being generated; must match the
number of names provided in the names parameterjava.io.Writer getWriter()
writer
object to be used for rendering a summary of the plug-in.