Class XhtmlMacroModuleDescriptor
java.lang.Object
com.atlassian.plugin.descriptors.AbstractModuleDescriptor<Macro>
com.atlassian.confluence.plugin.descriptor.XhtmlMacroModuleDescriptor
- All Implemented Interfaces:
MacroMetadataSource
,com.atlassian.plugin.ModuleDescriptor<Macro>
,com.atlassian.plugin.Resourced
,com.atlassian.plugin.ScopeAware
,com.atlassian.plugin.StateAware
public class XhtmlMacroModuleDescriptor
extends com.atlassian.plugin.descriptors.AbstractModuleDescriptor<Macro>
implements MacroMetadataSource
- Since:
- 4.0
-
Field Summary
Fields inherited from class com.atlassian.plugin.descriptors.AbstractModuleDescriptor
key, moduleClass, moduleClassName, moduleFactory, name, plugin, resources
-
Constructor Summary
ConstructorDescriptionXhtmlMacroModuleDescriptor
(AutodetectModuleFactoryHolder moduleFactoryHolder, MacroMetadataParser metadataParser) -
Method Summary
Modifier and TypeMethodDescriptionvoid
disabled()
void
enabled()
com.atlassian.plugin.elements.ResourceDescriptor
Returns the macro help descriptor, or null if there is no help.Returns the section of notation guide in which the macro help appears.boolean
hasHelp()
Returns true if the macro has help, otherwise false.void
init
(@NonNull com.atlassian.plugin.Plugin plugin, @NonNull com.atlassian.plugin.module.Element element) boolean
boolean
isOutputDeviceTypeSupported
(String deviceType) Check if the specified device type is supported.Methods inherited from class com.atlassian.plugin.descriptors.AbstractModuleDescriptor
assertModuleClassImplements, checkPermissions, destroy, equals, getCompleteKey, getDescription, getDescriptionKey, getI18nNameKey, getKey, getMinJavaVersion, getModuleClass, getModuleClassName, getName, getParams, getPlugin, getPluginKey, getRequiredPermissions, getResourceDescriptor, getResourceDescriptors, getResourceLocation, getScopeKey, hashCode, isBroken, isEnabled, isEnabledByDefault, isSystemModule, loadClass, satisfiesMinJavaVersion, setBroken, setPlugin, toString, validate
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.atlassian.plugin.ModuleDescriptor
getDisplayName
-
Field Details
-
supportedDeviceTypes
-
-
Constructor Details
-
XhtmlMacroModuleDescriptor
public XhtmlMacroModuleDescriptor(AutodetectModuleFactoryHolder moduleFactoryHolder, MacroMetadataParser metadataParser)
-
-
Method Details
-
enabled
public void enabled()- Specified by:
enabled
in interfacecom.atlassian.plugin.StateAware
- Overrides:
enabled
in classcom.atlassian.plugin.descriptors.AbstractModuleDescriptor<Macro>
-
disabled
public void disabled()- Specified by:
disabled
in interfacecom.atlassian.plugin.StateAware
- Overrides:
disabled
in classcom.atlassian.plugin.descriptors.AbstractModuleDescriptor<Macro>
-
init
public void init(@NonNull com.atlassian.plugin.Plugin plugin, @NonNull com.atlassian.plugin.module.Element element) throws com.atlassian.plugin.PluginParseException -
getModule
-
getMacroMetadata
- Specified by:
getMacroMetadata
in interfaceMacroMetadataSource
-
isAlwaysShowConfig
public boolean isAlwaysShowConfig() -
isOutputDeviceTypeSupported
Check if the specified device type is supported. You should note that all macros support theConversionContextOutputDeviceType.DESKTOP
type.- Parameters:
deviceType
- the device type to check.- Returns:
- true if the macro represented applies to the specified device type.
-
hasHelp
public boolean hasHelp()Returns true if the macro has help, otherwise false. Help can be provided by defining a resource inside the macro descriptor in the plugin XML descriptor file. The help resource has a type of "velocity" and a name of "help". It can have either a body or a "location" attribute with a reference to a Velocity file within the plugin. -
getHelpSection
Returns the section of notation guide in which the macro help appears. Should be one of the values defined in NotationHelpAction#SECTION_KEYS.- Throws:
IllegalStateException
- if this is called when #hasHelp() is false
-
getHelpDescriptor
public com.atlassian.plugin.elements.ResourceDescriptor getHelpDescriptor()Returns the macro help descriptor, or null if there is no help. The help is defined as a resource with type "velocity" and name "help" inside the macro descriptor. The resource tag can have a location attribute, referring to a file within the plugin, or a body.
-