All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.ext.gfm.tables.TableVisitor Maven / Gradle / Ivy

The newest version!
package com.vladsch.flexmark.ext.gfm.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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy