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

com.greenpepper.shaded.com.vladsch.flexmark.ast.Content Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
package com.greenpepper.shaded.com.vladsch.flexmark.ast;

import com.greenpepper.shaded.com.vladsch.flexmark.util.sequence.BasedSequence;

import java.util.List;

/**
 * A node that uses delimiters in the source form (e.g. *bold*).
 */
public interface Content {
    BasedSequence getSpanningChars();
    int getLineCount();
    BasedSequence getLineChars(int index);
    BasedSequence getContentChars();
    BasedSequence getContentChars(int startLine, int endLine);
    List getContentLines();
    List getContentLines(int startLine, int endLine);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy