Experiment with support for multiple lines within a paragraph.
[gpl/argeo-suite.git] / publishing / org.argeo.publishing.ui / src / org / argeo / cms / text / TextInterpreter.java
index f39a2b3291383b9c5c86c26030968fc5ed629728..5c94e669c06cdd5ad9fd948ec330baaca332cefa 100644 (file)
@@ -4,9 +4,11 @@ import javax.jcr.Item;
 
 /** Convert from/to data layer to/from presentation layer. */
 public interface TextInterpreter {
 
 /** Convert from/to data layer to/from presentation layer. */
 public interface TextInterpreter {
-       public String raw(Item item);
+       String raw(Item item);
 
 
-       public String read(Item item);
+       String read(Item item);
 
 
-       public void write(Item item, String content);
+       String readSimpleHtml(Item item);
+
+       void write(Item item, String content);
 }
 }