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 _______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs

