Re: [xwiki-devs] [xwiki-notifications] r22008 - in platform/core/trunk: xwiki-core/src/main/java/com/xpn/xwiki/internal xwiki-rendering/xwiki-rendering-macros/xwiki-rendering-macro-wikibridge/src/main/java/org/xwiki/rendering/internal/macro/wikibridge xwiki-rende
Hi, + * Constant for representing XWiki.WikiMacroClass xwiki class.
+ */ + String WIKI_MACRO_CLASS = "XWiki.WikiMacroClass"; + + /** + * Constant for representing macro name property. + */ + String MACRO_NAME_PROPERTY = "name"; + + /** + * Constant for representing macro name property. + */ + String MACRO_DESCRIPTION_PROPERTY = "description"; + + /** + * Constant for representing macro name property. + */ + String MACRO_CONTENT_PROPERTY = "content"; + + /** + * Constant for representing XWiki.WikiMacroParameterClass xwiki class. + */ + String WIKI_MACRO_PARAMETER_CLASS = "XWiki.WikiMacroParameterClass"; + + /** + * Constant for representing parameter name property. + * + * Same as MACRO_NAME_PROPERTY (Check style Fix) + */ + String PARAMETER_NAME_PROPERTY = MACRO_NAME_PROPERTY; + + /** + * Constant for representing parameter description property. + * + * Same as MACRO_DESCRIPTION_PROPERTY (Check style Fix) + */ + String PARAMETER_DESCRIPTION_PROPERTY = MACRO_DESCRIPTION_PROPERTY; + + /** + * Constant for representing parameter mandatory property. + */ + String PARAMETER_MANDATORY_PROPERTY = "mandatory";
I made a mistake while doing a copy / past, these fields should be marked as "private static final" - Asiri
participants (1)
-
Asiri Rathnayake