com.vladsch.flexmark.ext.tables.TableVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-tables Show documentation
Show all versions of flexmark-ext-tables Show documentation
flexmark-java extension for tables using "|" pipes with optional column spans and table caption
The newest version!
package com.vladsch.flexmark.ext.tables;
public interface TableVisitor {
void visit(TableBlock node);
void visit(TableHead node);
void visit(TableSeparator node);
void visit(TableBody node);
void visit(TableRow node);
void visit(TableCell node);
void visit(TableCaption node);
}