/** * */ package at.gv.egiz.pdfas.framework.input; /** * Represents a free-text input text to be processed. * * @author wprinz */ public interface TextDataSource extends DataSource { /** * Returns the text to be processed. * @return Returns the text to be processed. */ public String getText(); }