/** * */ package at.gv.egiz.pdfas.api.io; /** * Tells, that the IO Element (DataSink - but mostly DataSource) is based upon * character data. * *

* This can be used to retrieve the character text directly with the correct * encoding etc. *

*

* This makes most sense for text DataSources. *

* * @author wprinz */ public interface TextBased { /** * Returns the text. * * @return Returns the text. */ public String getText(); }