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

com.craigburke.document.builder.render.ParagraphElement.groovy Maven / Gradle / Ivy

package com.craigburke.document.builder.render

import com.craigburke.document.core.Paragraph

/**
 * Rendering element for the Paragraph node
 * @author Craig Burke
 */
class ParagraphElement {

    Paragraph node
    List lines

    ParagraphElement(Paragraph paragraph, Integer maxWidth) {
        node = paragraph
        lines = ParagraphParser.getLines(paragraph, maxWidth)
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy