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

com.github.woojiahao.style.elements.document.DocumentText.kt Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.github.woojiahao.style.elements.document

import com.github.woojiahao.style.elements.Element

class DocumentText(elementName: String) : Element(elementName) {

  private val contents = mutableListOf()
  var hasPageNumber = false
    private set
  var pageNumberPrepend = ""
    private set
  var pageNumberAppend = ""
    private set

  operator fun String.unaryPlus() = contents.add(this)

  fun pageNumber(prepend: String = "", append: String = "") {
    hasPageNumber = true
    pageNumberPrepend = prepend
    pageNumberAppend = append
  }

  fun getContents() = contents.joinToString("\n")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy