Salome HOME
Show URLs for previous versions of the document's files.
[tools/siman.git] / Workspace / Siman / src / org / splat / simer / HistoryFacade.java
1 package org.splat.simer;
2 /**
3  * Interface defining the services required for presenting the history of a document.
4  * 
5  * @author    Daniel Brunier-Coulin
6  * @copyright OPEN CASCADE 2012
7  */
8
9
10 public interface HistoryFacade {
11
12     public String getDate ();
13     public String getDescription ();
14     public String getFileIcon ();
15     public String getSharingIcon ();
16     public String getSize ();
17     public String getVersion ();
18     public String getVersioningIcon ();
19 }