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

pro.verron.officestamper.api.Placeholder Maven / Gradle / Ivy

Go to download

Office-stamper is a Java template engine for docx documents, forked from org.wickedsource.docx-stamper

The newest version!
package pro.verron.officestamper.api;

/**
 * The Placeholder interface represents a placeholder in a text document.
 * It provides methods to retrieve the content of the placeholder and the full expression.
 */
public interface Placeholder {

    /**
     * Returns the content of the placeholder.
     *
     * @return the content of the placeholder
     */
    String content();

    /**
     * Retrieves the expression of the placeholder.
     *
     * @return the expression of the placeholder.
     */
    String expression();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy