]> git.argeo.org Git - gpl/argeo-suite.git/blob - docbook/TextInterpreter.java
Prepare next development cycle
[gpl/argeo-suite.git] / docbook / TextInterpreter.java
1 package org.argeo.app.swt.docbook;
2
3 import org.argeo.api.acr.Content;
4
5 /** Convert from/to data layer to/from presentation layer. */
6 public interface TextInterpreter {
7 String raw(Content content);
8
9 String read(Content content);
10
11 String readSimpleHtml(Content content);
12
13 void write(Content content, String txt);
14 }