]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.cms/src/org/argeo/api/cms/ux/CmsUi.java
Use Argeo Build from testing
[lgpl/argeo-commons.git] / org.argeo.api.cms / src / org / argeo / api / cms / ux / CmsUi.java
1 package org.argeo.api.cms.ux;
2
3 /** The actual implementation of a user interface, using a given technology. */
4 public interface CmsUi {
5 Object getData(String key);
6
7 void setData(String key, Object value);
8
9 CmsView getCmsView();
10 }