]> SALOME platform Git repositories - tools/siman.git/blobdiff - Workspace/Siman-Common/src/org/splat/dal/bo/som/SimulationContextType.java
Salome HOME
Refactoring of Database, replacing SQL by DAOs calls. Methods for search by criteria...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / bo / som / SimulationContextType.java
index 881d086a9bbb732157785ae64ea0191d5992f46b..c275cb87988b462e6cd41b36e4cdd0226340e911 100644 (file)
@@ -35,10 +35,10 @@ public class SimulationContextType extends Persistent implements Serializable {
       private ProgressState         state = null;
       private ProjectSettingsService.Step  step  = null;
 
-      protected ProgressState getProgressState () {
+      public ProgressState getProgressState () {
        return state;
       }
-      protected ProjectSettingsService.Step getStep () {
+      public ProjectSettingsService.Step getStep () {
        return step;
       }
       public Properties setState (ProgressState state) {
@@ -54,7 +54,7 @@ public class SimulationContextType extends Persistent implements Serializable {
     protected SimulationContextType () {
     }
 //  Initialization constructor
-    protected SimulationContextType (String name, ProjectSettingsService.Step step) throws InvalidPropertyException {
+    public SimulationContextType (String name, ProjectSettingsService.Step step) throws InvalidPropertyException {
 //  ------------------------------------------------------------------------
       super();
       this.name  = name;