| org.apache.roller.business.WeblogEntryPlugin
All known Subclasses: org.apache.roller.ui.rendering.plugins.WikipediaLinkPlugin, org.apache.roller.ui.rendering.plugins.BookmarkPlugin, org.apache.roller.ui.rendering.plugins.ReadMorePlugin, org.apache.roller.ui.rendering.plugins.TextilePlugin, org.apache.roller.ui.rendering.plugins.SmileysPlugin, org.apache.roller.ui.rendering.plugins.GoogleLinkPlugin, org.apache.roller.ui.rendering.plugins.ObfuscateEmailPlugin, org.apache.roller.ui.rendering.plugins.TopicTagPlugin, org.apache.roller.ui.rendering.plugins.ConvertLineBreaksPlugin, org.apache.roller.ui.rendering.plugins.AcronymsPlugin,
WeblogEntryPlugin | public interface WeblogEntryPlugin (Code) | | Interface for Roller weblog entry plugins.
Weblog entry plugins are used to make transformations to the entry text.
These plugins affect both the entry summary and entry body.
|
Method Summary | |
public String | getDescription() Briefly describes the function of the Plugin. | public String | getName() Returns the display name of this Plugin. | public void | init(WebsiteData weblog) Give plugin a chance to initialize and add objects the rendering model. | public String | render(WeblogEntryData entry, String str) Apply plugin to the specified text.
Parameters: entry - Entry being rendered. Parameters: str - String to which plugin should be applied. |
getDescription | public String getDescription()(Code) | | Briefly describes the function of the Plugin. May contain HTML.
|
getName | public String getName()(Code) | | Returns the display name of this Plugin.
|
init | public void init(WebsiteData weblog) throws RollerException(Code) | | Give plugin a chance to initialize and add objects the rendering model.
Parameters: weblog - Weblog being processed Parameters: model - Rendering model where objects can be placed |
render | public String render(WeblogEntryData entry, String str)(Code) | | Apply plugin to the specified text.
Parameters: entry - Entry being rendered. Parameters: str - String to which plugin should be applied. Results of applying plugin to entry. |
|
|