]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman-Common/src/org/splat/service/dto/StudyFacadeDTO.java
Salome HOME
Studies comparison functionality is implemented.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / dto / StudyFacadeDTO.java
1 package org.splat.service.dto; 
2
3 import java.util.List;
4
5 /**
6  * The study DTO.
7  */
8 public class StudyFacadeDTO {
9
10         /**
11          * The scenario DTO.
12          */
13         public static class ScenarioDTO {
14                 
15                 /**
16                  * The name.
17                  */
18                 private String _name;
19                 
20                 /**
21                  * List of file DTOs.
22                  */
23                 private List <DocumentDTO> _docs;
24                 
25                 /**
26                  * Get the name.
27                  * @return the name
28                  */
29                 public String getName() {
30                         return _name;
31                 }
32                 
33                 /**
34                  * Set the name.
35                  * @param name the name to set
36                  */
37                 public void setName(final String name) {
38                         _name = name;
39                 }
40
41                 /**
42                  * Get the docs.
43                  * @return the docs
44                  */
45                 public List<DocumentDTO> getDocs() {
46                         return _docs;
47                 }
48
49                 /**
50                  * Set the docs.
51                  * @param docs the docs to set
52                  */
53                 public void setDocs(final List<DocumentDTO> docs) {
54                         _docs = docs;
55                 }
56         }
57
58         /**
59          * The name.
60          */
61         private String _name;
62         
63         /**
64          * The scenarios.
65          */
66         private List<ScenarioDTO> _scenarios;
67         
68         /**
69          * Get the name.
70          * @return the name
71          */     
72         public String getName() {
73                 return _name;
74         }
75         
76         /**
77          * Set the name.
78          * @param name the name to set
79          */
80         public void setName(final String name) {
81                 _name = name;
82         }
83         
84         /**
85          * Get the scenarios.
86          * @return the scenarios
87          */
88         public List<ScenarioDTO> getScenarios() {
89                 return _scenarios;
90         }
91         
92         /**
93          * Set the scenarios.
94          * @param scenarios the scenarios to set
95          */
96         public void setScenarios(final List<ScenarioDTO> scenarios) {
97                 _scenarios = scenarios;
98         }
99 }