pro.verron.officestamper.api.Placeholder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of engine Show documentation
Show all versions of engine Show documentation
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();
}