]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman-Common/src/org/splat/service/dto/DocToCompareDTO.java
Salome HOME
Compare method signature and DocToCompareDTO are added.
[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          * Path to comparable file in vault.
30          */
31         private String _pathToFile;
32         
33         
34         /**
35          * Get the studyTitle.
36          * @return the studyTitle
37          */
38         public String getStudyTitle() {
39                 return _studyTitle;
40         }
41         /**
42          * Set the studyTitle.
43          * @param studyTitle the studyTitle to set
44          */
45         public void setStudyTitle(final String studyTitle) {
46                 _studyTitle = studyTitle;
47         }
48         /**
49          * Get the scenarioTitle.
50          * @return the scenarioTitle
51          */
52         public String getScenarioTitle() {
53                 return _scenarioTitle;
54         }
55         /**
56          * Set the scenarioTitle.
57          * @param scenarioTitle the scenarioTitle to set
58          */
59         public void setScenarioTitle(final String scenarioTitle) {
60                 _scenarioTitle = scenarioTitle;
61         }
62         /**
63          * Get the pathToFile.
64          * @return the pathToFile
65          */
66         public String getPathToFile() {
67                 return _pathToFile;
68         }
69         /**
70          * Set the pathToFile.
71          * @param pathToFile the pathToFile to set
72          */
73         public void setPathToFile(final String pathToFile) {
74                 _pathToFile = pathToFile;
75         }
76         
77         
78 }