]> git.argeo.org Git - gpl/argeo-suite.git/blob - swt/org.argeo.app.ui/src/org/argeo/app/ui/docbook/TextInterpreter.java
Prepare refactoring suite UX
[gpl/argeo-suite.git] / swt / org.argeo.app.ui / src / org / argeo / app / ui / docbook / TextInterpreter.java
1 package org.argeo.app.ui.docbook;
2
3 import javax.jcr.Item;
4
5 /** Convert from/to data layer to/from presentation layer. */
6 public interface TextInterpreter {
7 String raw(Item item);
8
9 String read(Item item);
10
11 String readSimpleHtml(Item item);
12
13 void write(Item item, String content);
14 }