com.vladsch.flexmark.ext.tables.TableTextCollectingVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package com.vladsch.flexmark.ext.tables;
import com.vladsch.flexmark.ast.util.TextCollectingVisitor;
/**
* @deprecated use {@link com.vladsch.flexmark.util.ast.TextCollectingVisitor} from the utils library
*/
@Deprecated
public class TableTextCollectingVisitor extends TextCollectingVisitor {
final public static Class>[] TABLE_LINE_BREAK_CLASSES = { TableBlock.class, TableRow.class, TableCaption.class };
public TableTextCollectingVisitor(Class>... lineBreakNodes) {
super(lineBreakNodes.length == 0 ? TABLE_LINE_BREAK_CLASSES : concatArrays(TABLE_LINE_BREAK_CLASSES, lineBreakNodes));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy