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

io.github.swagger2markup.adoc.ast.impl.ParagraphBlockImpl Maven / Gradle / Ivy

The newest version!
package io.github.swagger2markup.adoc.ast.impl;

import org.asciidoctor.ast.StructuralNode;

import java.util.List;
import java.util.Map;

public class ParagraphBlockImpl extends BlockImpl {

    public static final String CONTEXT = "paragraph";

    public ParagraphBlockImpl(StructuralNode parent) {
        super(parent, CONTEXT);
    }

    public ParagraphBlockImpl(StructuralNode parent, Object content) {
        super(parent, CONTEXT, content);
    }

    public ParagraphBlockImpl(StructuralNode parent, Map attributes) {
        super(parent, CONTEXT, attributes);
    }

    public ParagraphBlockImpl(StructuralNode parent, Map attributes, Object content) {
        super(parent, CONTEXT, attributes, content);
    }

    public ParagraphBlockImpl(StructuralNode parent, Map attributes, List roles,
                              Object content, List blocks, String contentModel, List subs) {
        super(parent, CONTEXT, attributes, roles, content, blocks, contentModel, subs);
    }

    public ParagraphBlockImpl(StructuralNode parent, Map attributes, List roles,
                              Object content, List blocks, Integer level, String contentModel,
                              List subs) {
        super(parent, CONTEXT, attributes, roles, content, blocks, level, contentModel, subs);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy