Package org.xwiki.rendering.wikimodel
Interface IWikiReferenceParser
-
- All Known Implementing Classes:
CommonWikiReferenceParser
,CreoleWikiReferenceParser
,GWikiWikiReferenceParser
,JspWikiReferenceParser
,WikiReferenceParser
,XWikiReferenceParser
public interface IWikiReferenceParser
Instances of this type are used to transform references found in wiki documents into corresponding structured objects -WikiReference
.- Author:
- kotelnikov
- See Also:
WikiReference
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WikiReference
parse(String str)
Parses the given reference, recognizes individual parts of this reference (link, label, parameters) and returns the corresponding reference object.
-
-
-
Method Detail
-
parse
WikiReference parse(String str)
Parses the given reference, recognizes individual parts of this reference (link, label, parameters) and returns the corresponding reference object.- Parameters:
str
- the reference to parse- Returns:
- a wiki reference corresponding to the given link
-
-