public class DelegatingReadOnlyMacroManager extends Object implements MacroManager
A Macro Manager which looks for named macros in an ordered manner through a list of delegate MacroManager's it maintains.
This MacroManager is read only and therefore the registerMacro(String, Macro) and
unregisterMacro(String) calls are not supported.
| Constructor and Description |
|---|
DelegatingReadOnlyMacroManager(List<MacroManager> delegateMacroManagers) |
| Modifier and Type | Method and Description |
|---|---|
com.atlassian.util.concurrent.LazyReference<Macro> |
createLazyMacroReference(com.atlassian.plugin.ModuleDescriptor<?> moduleDescriptor)
Deprecated.
since 7.0.1. Use
MacroManager.newLazyMacroReference(ModuleDescriptor) |
Macro |
getMacroByName(String macroName)
Gives the
Macro registered with the
given name, or null if there is none registered with the manager. |
void |
registerMacro(String name,
Macro macro)
Registers a new macro with the given name.
|
void |
unregisterMacro(String name)
Unregisters the macro with the given name.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitnewLazyMacroReferencepublic DelegatingReadOnlyMacroManager(List<MacroManager> delegateMacroManagers)
public Macro getMacroByName(String macroName)
MacroManagerMacro registered with the
given name, or null if there is none registered with the manager.getMacroByName in interface MacroManagermacroName - The macro to get.public void registerMacro(String name, Macro macro)
MacroManagerregisterMacro in interface MacroManagername - the name to register the macro under. For example, 'code'.macro - the macro to registerUnsupportedOperationExceptionpublic void unregisterMacro(String name)
MacroManagerunregisterMacro in interface MacroManagername - the name of the macro to unregister. For example, 'code'.UnsupportedOperationException@Deprecated public com.atlassian.util.concurrent.LazyReference<Macro> createLazyMacroReference(com.atlassian.plugin.ModuleDescriptor<?> moduleDescriptor)
MacroManager.newLazyMacroReference(ModuleDescriptor)MacroManagercreateLazyMacroReference in interface MacroManagermoduleDescriptor - describes the macro we are creating a lazy reference to.UnsupportedOperationExceptionCopyright © 2003–2022 Atlassian. All rights reserved.