Salome HOME
84d82cc2a255308ea4f107fd658e528153230ccf
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / DocumentTypeService.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   06.10.2012
6  * @author         $Author$
7  * @version        $Revision$
8  *****************************************************************************/
9
10 package org.splat.service; 
11
12 import org.splat.dal.bo.som.DocumentType;
13
14 /**
15  * @author RKV
16  *
17  */
18 public interface DocumentTypeService {
19
20         /**
21          * Checks if documents of this type are result of a study.
22          * A document is the result of a study when it is the result of the last step of the study.
23          * 
24          * @return true if documents of this type are result of a study.
25          * @see    #isStepResult()
26          * @see    #isResultOf(org.splat.service.technical.ProjectSettingsServiceImpl.Step)
27          */
28             public boolean isStudyResult (DocumentType aType);
29 }