Uses of Interface
org.apache.maven.doxia.module.twiki.parser.Block
-
Packages that use Block Package Description org.apache.maven.doxia.module.twiki org.apache.maven.doxia.module.twiki.parser -
-
Uses of Block in org.apache.maven.doxia.module.twiki
Methods in org.apache.maven.doxia.module.twiki that return types with arguments of type Block Modifier and Type Method Description java.util.List<Block>TWikiParser. parse(ByLineSource source)parse.Method parameters in org.apache.maven.doxia.module.twiki with type arguments of type Block Modifier and Type Method Description java.lang.StringTWikiParser. getTitle(java.util.List<Block> blocks, ByLineSource source)Guess a title for the page. -
Uses of Block in org.apache.maven.doxia.module.twiki.parser
Classes in org.apache.maven.doxia.module.twiki.parser that implement Block Modifier and Type Class Description (package private) classAbstractFatherBlockGeneric Block for the Block that have child blocks.(package private) classAnchorBlockRepresents an anchor(package private) classBoldBlockBlock that represents the bold text format(package private) classHorizontalRuleBlockRepresents an horizontal block(package private) classImageBlockBlock that represents an image.(package private) classItalicBlockBlock that represents the italic text format(package private) classLinkBlockBlock that represents a link.(package private) classListBlock- item1 - item2 - item2.1 ...(package private) classListItemBlockBlock that represents the item in a list(package private) classMonospaceBlockBlock that represents the monospaced text format(package private) classNopBlockBlock that not represent anything(package private) classNumeratedListBlock1.(package private) classParagraphBlockclassSectionBlockBlock that represents a section(package private) classTableBlockRepresents a table(package private) classTableCellBlockTable cell(package private) classTableCellHeaderBlockTable Cell headear(package private) classTableRowBlockRepresens a Table Row(package private) classTextBlockBlock that holds plain text(package private) classUnorderedListBlock- item1 - item2 - item2.1 ...(package private) classVerbatimBlockRepresents a verbatim block(package private) classWikiWordBlockRepresent a WikiWord(package private) classXHTMLBlockAn XHTML BlockFields in org.apache.maven.doxia.module.twiki.parser declared as Block Modifier and Type Field Description private Block[]AbstractFatherBlock. childBlocksprivate BlockLinkBlock. contentlink textprivate BlockWikiWordBlock. contentcontent to show in the wiki word linkMethods in org.apache.maven.doxia.module.twiki.parser that return Block Modifier and Type Method Description BlockFormatBlockFactory. createBlock(Block[] childrens)factory method of formatBlockprivate BlockTextParser. createLink(java.lang.String link, java.lang.String showText)Decides between a WikiWordBlock or a a LinkBlockBlock[]AbstractFatherBlock. getBlocks()Returns the childBlocks.(package private) Block[]FormatedTextParser. parse(java.lang.String line)BlockBlockParser. visit(java.lang.String line, ByLineSource source)visit.BlockGenericListBlockParser. visit(java.lang.String line, ByLineSource source)visit.BlockHRuleBlockParser. visit(java.lang.String line, ByLineSource source)visit.BlockParagraphBlockParser. visit(java.lang.String line, ByLineSource source)visit.BlockSectionBlockParser. visit(java.lang.String line, ByLineSource source)visit.BlockTableBlockParser. visit(java.lang.String line, ByLineSource source)visit.BlockVerbatimBlockParser. visit(java.lang.String line, ByLineSource source)visit.Methods in org.apache.maven.doxia.module.twiki.parser that return types with arguments of type Block Modifier and Type Method Description java.util.List<Block>TextParser. parse(java.lang.String line)parse.private java.util.List<Block>FormatedTextParser. parseFormat(java.lang.String line)Parse text format (bold, italic...)Methods in org.apache.maven.doxia.module.twiki.parser with parameters of type Block Modifier and Type Method Description BlockFormatBlockFactory. createBlock(Block[] childrens)factory method of formatBlockMethod parameters in org.apache.maven.doxia.module.twiki.parser with type arguments of type Block Modifier and Type Method Description private voidTextParser. parseAnchor(java.lang.String line, java.util.List<Block> ret, java.util.regex.Matcher anchorMatcher)Parses the anchorprivate voidTextParser. parseForcedLink(java.lang.String line, java.util.List<Block> ret, java.util.regex.Matcher forcedLinkMatcher)Parses the linkprivate voidTextParser. parseImage(java.lang.String line, java.util.List<Block> ret, java.util.regex.Matcher imageTagMatcher)Parses the image tagprivate voidTextParser. parseLink(java.lang.String line, java.util.List<Block> ret, java.util.regex.Matcher linkMatcher)Parses a linkprivate voidTextParser. parseUrl(java.lang.String line, java.util.List<Block> ret, java.util.regex.Matcher urlMatcher)Parses the urlprivate voidTextParser. parseWiki(java.lang.String line, java.util.List<Block> ret, java.util.regex.Matcher wikiMatcher)Parses a wiki wordprivate voidTextParser. parseXHTML(java.lang.String line, java.util.List<Block> ret, java.util.regex.Matcher xhtmlMatcher)Parses xhtml.Constructors in org.apache.maven.doxia.module.twiki.parser with parameters of type Block Constructor Description AbstractFatherBlock(Block[] childBlocks)Creates the AbstractFatherBlock.BoldBlock(Block[] childBlocks)Creates the BoldBlock.ItalicBlock(Block[] childBlocks)Creates the BoldBlock.LinkBlock(java.lang.String reference, Block content)Creates the LinkBlock.ListItemBlock(Block[] blocks)ListItemBlock(Block[] blocks, ListBlock innerList)Creates the ListItemBlock.MonospaceBlock(Block[] childBlocks)Creates the MonospaceBlock.ParagraphBlock(Block[] blocks)SectionBlock(java.lang.String title, int level, Block[] blocks)Creates the SectionBlock.TableBlock(Block[] childBlocks)Creates the TableBlock.TableCellBlock(Block[] childBlocks)Creates the TableCellBlock.TableCellHeaderBlock(Block[] childBlocks)Creates the TableCellHeaderBlock.TableRowBlock(Block[] childBlocks)Creates the TableRowBlock.VerbatimBlock(Block[] childBlocks)Creates the VerbatimBlock.WikiWordBlock(java.lang.String aWikiword, Block content, WikiWordLinkResolver resolver)Creates the WikiWordBlock.
-