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

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

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

import org.asciidoctor.ast.Cell;
import org.asciidoctor.ast.Row;

import java.util.List;

public class RowImpl implements Row {

    private final List cells;

    public RowImpl(List cells) {
        this.cells = cells;
    }

    @Override
    public List getCells() {
        return cells;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy