]> git.argeo.org Git - gpl/argeo-suite.git/blob - publishing/org.argeo.publishing.ui/src/org/argeo/cms/text/TextInterpreter.java
[maven-release-plugin] prepare release argeo-suite-2.1.17
[gpl/argeo-suite.git] / publishing / org.argeo.publishing.ui / src / org / argeo / cms / text / TextInterpreter.java
1 package org.argeo.cms.text;
2
3 import javax.jcr.Item;
4
5 /** Convert from/to data layer to/from presentation layer. */
6 public interface TextInterpreter {
7 public String raw(Item item);
8
9 public String read(Item item);
10
11 public void write(Item item, String content);
12 }