1
2
3
4 package org.rcfaces.core.model;
5
6 import org.rcfaces.core.internal.contentAccessor.IGeneratedResourceInformation;
7 import org.rcfaces.core.internal.contentAccessor.IGenerationResourceInformation;
8
9
10
11
12
13
14 public interface IContentModel {
15
16
17
18 void setInformations(IGenerationResourceInformation generationInformation,
19 IGeneratedResourceInformation generatedInformation);
20
21 Object getWrappedData();
22
23 String getContentEngineId();
24
25 void setContentEngineId(String contentEngineId);
26
27 boolean checkNotModified();
28 }