Salome HOME
Studies comparison functionality is implemented.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / dto / DocToCompareDTO.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   06.03.2013
6  * @author         Author: Maria KRUCHININA
7  * @version        Revision: 
8  *****************************************************************************/
9
10 package org.splat.service.dto; 
11
12 /**
13  * DTO contains information about documents that can be compared 
14  * in the frame of "Compare the Studies" operation.
15  * @author Maria KRUCHININA
16  *
17  */
18 public class DocToCompareDTO {
19
20         /**
21          * Study title.
22          */
23         private String _studyTitle;
24         /**
25          * Scenario title.
26          */
27         private String _scenarioTitle;
28         /**
29          * Document title.
30          */
31         private String _documentTitle;
32         /**
33          * Path to comparable file in vault.
34          */
35         private String _pathToFile;
36         
37         
38         /**
39          * Get the studyTitle.
40          * @return the studyTitle
41          */
42         public String getStudyTitle() {
43                 return _studyTitle;
44         }
45         /**
46          * Set the studyTitle.
47          * @param studyTitle the studyTitle to set
48          */
49         public void setStudyTitle(final String studyTitle) {
50                 _studyTitle = studyTitle;
51         }
52         /**
53          * Get the scenarioTitle.
54          * @return the scenarioTitle
55          */
56         public String getScenarioTitle() {
57                 return _scenarioTitle;
58         }
59         /**
60          * Set the scenarioTitle.
61          * @param scenarioTitle the scenarioTitle to set
62          */
63         public void setScenarioTitle(final String scenarioTitle) {
64                 _scenarioTitle = scenarioTitle;
65         }
66         /**
67          * Get the documentTitle.
68          * @return the documentTitle
69          */
70         public String getDocumentTitle() {
71                 return _documentTitle;
72         }
73         /**
74          * Set the documentTitle.
75          * @param documentTitle the documentTitle to set
76          */
77         public void setDocumentTitle(final String documentTitle) {
78                 _documentTitle = documentTitle;
79         }
80         /**
81          * Get the pathToFile.
82          * @return the pathToFile
83          */
84         public String getPathToFile() {
85                 return _pathToFile;
86         }
87         /**
88          * Set the pathToFile.
89          * @param pathToFile the pathToFile to set
90          */
91         public void setPathToFile(final String pathToFile) {
92                 _pathToFile = pathToFile;
93         }
94         
95         
96 }