|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MacroManager
Interface for the XHTML macro manager.
Method Summary | |
---|---|
com.atlassian.util.concurrent.LazyReference<Macro> |
createLazyMacroReference(com.atlassian.plugin.ModuleDescriptor<?> moduleDescriptor)
Macros are lazy loaded to avoid plugin module ordering problems like CONF-13386. |
Macro |
getMacroByName(java.lang.String macroName)
Gives the Macro registered with the
given name, or null if there is none registered with the manager. |
void |
registerMacro(java.lang.String name,
Macro macro)
Registers a new macro with the given name. |
void |
unregisterMacro(java.lang.String name)
Unregisters the macro with the given name. |
Method Detail |
---|
Macro getMacroByName(java.lang.String macroName)
Macro
registered with the
given name, or null if there is none registered with the manager.
macroName
- The macro to get.
void registerMacro(java.lang.String name, Macro macro)
name
- the name to register the macro under. For example, 'code'.macro
- the macro to registervoid unregisterMacro(java.lang.String name)
name
- the name of the macro to unregister. For example, 'code'.com.atlassian.util.concurrent.LazyReference<Macro> createLazyMacroReference(com.atlassian.plugin.ModuleDescriptor<?> moduleDescriptor)
moduleDescriptor
- describes the macro we are creating a lazy reference to.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |